/home/desid573/public_html/payment/xero-2/vendor/guzzlehttp/psr7/src
NameSizeModeActions
AppendStream.php57680644editdlrm
BufferStream.php30790644editdlrm
CachingStream.php44500644editdlrm
DroppingStream.php10940644editdlrm
FnStream.php39580644editdlrm
functions.php134090644editdlrm
functions_include.php1560644editdlrm
Header.php21780644editdlrm
InflateStream.php18450644editdlrm
LazyOpenStream.php9000644editdlrm
LimitStream.php42250644editdlrm
Message.php82760644editdlrm
MessageTrait.php59430644editdlrm
MimeType.php51090644editdlrm
MultipartStream.php47690644editdlrm
NoSeekStream.php4390644editdlrm
PumpStream.php40840644editdlrm
Query.php34900644editdlrm
Request.php37190644editdlrm
Response.php48090644editdlrm
Rfc7230.php6910644editdlrm
ServerRequest.php98520644editdlrm
Stream.php68100644editdlrm
StreamDecoratorTrait.php32910644editdlrm
StreamWrapper.php37790644editdlrm
UploadedFile.php77710644editdlrm
Uri.php228980644editdlrm
UriNormalizer.php83310644editdlrm
UriResolver.php87890644editdlrm
Utils.php146730644editdlrm
Edit: /home/desid573/public_html/payment/xero-2/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.'); } } }