/home/desid573/cf.desidrivers.com.au/site/google/api/vendor/guzzlehttp/psr7/src
NameSizeModeActions
AppendStream.php55010644editdlrm
BufferStream.php30430644editdlrm
CachingStream.php42520644editdlrm
DroppingStream.php10800644editdlrm
FnStream.php36600644editdlrm
functions.php244520644editdlrm
functions_include.php1560644editdlrm
InflateStream.php17580644editdlrm
LazyOpenStream.php8800644editdlrm
LimitStream.php42100644editdlrm
MessageTrait.php45790644editdlrm
MultipartStream.php46930644editdlrm
NoSeekStream.php4240644editdlrm
PumpStream.php40350644editdlrm
Request.php33830644editdlrm
Response.php40620644editdlrm
ServerRequest.php94070644editdlrm
Stream.php67490644editdlrm
StreamDecoratorTrait.php32750644editdlrm
StreamWrapper.php28060644editdlrm
UploadedFile.php75430644editdlrm
Uri.php198110644editdlrm
UriNormalizer.php83160644editdlrm
UriResolver.php87740644editdlrm
Edit: /home/desid573/cf.desidrivers.com.au/site/google/api/vendor/guzzlehttp/psr7/src/Request.php (3383B)
method = strtoupper($method); $this->uri = $uri; $this->setHeaders($headers); $this->protocol = $version; if (!$this->hasHeader('Host')) { $this->updateHostFromUri(); } if ($body !== '' && $body !== null) { $this->stream = stream_for($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) { $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) { $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; } }