Lines Matching refs:uri
24 private $uri; variable in GuzzleHttp\\Psr7\\Request
28 * @param string|UriInterface $uri URI
35 $uri, argument
41 if (!($uri instanceof UriInterface)) {
42 $uri = new Uri($uri);
46 $this->uri = $uri;
65 $target = $this->uri->getPath();
69 if ($this->uri->getQuery() != '') {
70 $target .= '?' . $this->uri->getQuery();
104 return $this->uri;
107 public function withUri(UriInterface $uri, $preserveHost = false) argument
109 if ($uri === $this->uri) {
114 $new->uri = $uri;
125 $host = $this->uri->getHost();
131 if (($port = $this->uri->getPort()) !== null) {