Searched refs:requestTarget (Results 1 – 5 of 5) sorted by relevance
23 private $requestTarget; variable in GuzzleHttp\\Psr7\\Request63 if ($this->requestTarget !== null) {64 return $this->requestTarget;78 public function withRequestTarget($requestTarget): RequestInterface argument80 if (preg_match('#\s#', $requestTarget)) {87 $new->requestTarget = $requestTarget;
21 private $requestTarget; variable in GuzzleHttp\\Psr7\\Request61 if ($this->requestTarget !== null) {62 return $this->requestTarget;76 public function withRequestTarget($requestTarget) argument78 if (preg_match('#\s#', $requestTarget)) {85 $new->requestTarget = $requestTarget;
58 * @param mixed $requestTarget61 public function withRequestTarget($requestTarget); argument
58 * @param string $requestTarget61 public function withRequestTarget(string $requestTarget): RequestInterface; argument
41 | `withRequestTarget($requestTarget)` | Return a new message instance with the specific request-tar…