method = strtoupper( $method ); $this->uri = $uri; $this->headers = $headers; $this->body = $body; } public function getMethod() { return $this->method; } public function getHeaders() { return $this->headers; } public function getUri() { return $this->uri; } public function getBody() { return $this->body; } }