Home
last modified time | relevance | path

Searched refs:requestTarget (Results 1 – 5 of 5) sorted by relevance

/plugin/matrixnotifierwas/vendor/guzzlehttp/psr7/src/
DRequest.php23 private $requestTarget; variable in GuzzleHttp\\Psr7\\Request
63 if ($this->requestTarget !== null) {
64 return $this->requestTarget;
78 public function withRequestTarget($requestTarget): RequestInterface argument
80 if (preg_match('#\s#', $requestTarget)) {
87 $new->requestTarget = $requestTarget;
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
DRequest.php21 private $requestTarget; variable in GuzzleHttp\\Psr7\\Request
61 if ($this->requestTarget !== null) {
62 return $this->requestTarget;
76 public function withRequestTarget($requestTarget) argument
78 if (preg_match('#\s#', $requestTarget)) {
85 $new->requestTarget = $requestTarget;
/plugin/authgooglesheets/vendor/psr/http-message/src/
DRequestInterface.php58 * @param mixed $requestTarget
61 public function withRequestTarget($requestTarget); argument
/plugin/matrixnotifierwas/vendor/psr/http-message/src/
DRequestInterface.php58 * @param string $requestTarget
61 public function withRequestTarget(string $requestTarget): RequestInterface; argument
/plugin/matrixnotifierwas/vendor/psr/http-message/docs/
DPSR7-Interfaces.md41 | `withRequestTarget($requestTarget)` | Return a new message instance with the specific request-tar…