/home/techb158/exp.abdallabala.com/vendor/guzzlehttp/psr7/src
NameSizeModeActions
AppendStream.php57550644editdlrm
BufferStream.php30660644editdlrm
CachingStream.php42580644editdlrm
DroppingStream.php10810644editdlrm
FnStream.php39380644editdlrm
functions.php133940644editdlrm
functions_include.php1560644editdlrm
Header.php21780644editdlrm
InflateStream.php18250644editdlrm
LazyOpenStream.php8930644editdlrm
LimitStream.php42120644editdlrm
Message.php82760644editdlrm
MessageTrait.php59430644editdlrm
MimeType.php51090644editdlrm
MultipartStream.php47180644editdlrm
NoSeekStream.php4250644editdlrm
PumpStream.php40630644editdlrm
Query.php34270644editdlrm
Request.php37190644editdlrm
Response.php48090644editdlrm
Rfc7230.php6840644editdlrm
ServerRequest.php98370644editdlrm
Stream.php68100644editdlrm
StreamDecoratorTrait.php32880644editdlrm
StreamWrapper.php37660644editdlrm
UploadedFile.php76050644editdlrm
Uri.php215090644editdlrm
UriNormalizer.php83170644editdlrm
UriResolver.php87750644editdlrm
Utils.php135870644editdlrm
Edit: /home/techb158/exp.abdallabala.com/vendor/guzzlehttp/psr7/src/Request.php (3719B)
assertMethod($method); if (!($uri instanceof UriInterface)) { $uri = new Uri($uri); } $this->method = strtoupper($method); $this->uri = $uri; $this->setHeaders($headers); $this->protocol = $version; if (!isset($this->headerNames['host'])) { $this->updateHostFromUri(); } if ($body !== '' && $body !== null) { $this->stream = Utils::streamFor($body); } } public function getRequestTarget() { if ($this->requestTarget !== null) { return $this->requestTarget; } $target = $this->uri->getPath(); if ($target == '') { $target = '/'; } if ($this->uri->getQuery() != '') { $target .= '?' . $this->uri->getQuery(); } return $target; } public function withRequestTarget($requestTarget) { if (preg_match('#\s#', $requestTarget)) { throw new InvalidArgumentException( 'Invalid request target provided; cannot contain whitespace' ); } $new = clone $this; $new->requestTarget = $requestTarget; return $new; } public function getMethod() { return $this->method; } public function withMethod($method) { $this->assertMethod($method); $new = clone $this; $new->method = strtoupper($method); return $new; } public function getUri() { return $this->uri; } public function withUri(UriInterface $uri, $preserveHost = false) { if ($uri === $this->uri) { return $this; } $new = clone $this; $new->uri = $uri; if (!$preserveHost || !isset($this->headerNames['host'])) { $new->updateHostFromUri(); } return $new; } private function updateHostFromUri() { $host = $this->uri->getHost(); if ($host == '') { return; } if (($port = $this->uri->getPort()) !== null) { $host .= ':' . $port; } if (isset($this->headerNames['host'])) { $header = $this->headerNames['host']; } else { $header = 'Host'; $this->headerNames['host'] = 'Host'; } // Ensure Host is the first header. // See: http://tools.ietf.org/html/rfc7230#section-5.4 $this->headers = [$header => [$host]] + $this->headers; } private function assertMethod($method) { if (!is_string($method) || $method === '') { throw new \InvalidArgumentException('Method must be a non-empty string.'); } } }