Home
last modified time | relevance | path

Searched refs:serverParams (Results 1 – 4 of 4) sorted by relevance

/plugin/matrixnotifierwas/vendor/guzzlehttp/psr7/src/
DServerRequest.php52 private $serverParams; variable in GuzzleHttp\\Psr7\\ServerRequest
65 * @param array $serverParams Typically the $_SERVER superglobal
73 array $serverParams = [] argument
75 $this->serverParams = $serverParams;
DHttpFactory.php67 …public function createServerRequest(string $method, $uri, array $serverParams = []): ServerRequest… argument
70 if (!empty($serverParams['REQUEST_METHOD'])) {
71 $method = $serverParams['REQUEST_METHOD'];
77 return new ServerRequest($method, $uri, [], null, '1.1', $serverParams);
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
DServerRequest.php50 private $serverParams; variable in GuzzleHttp\\Psr7\\ServerRequest
63 * @param array $serverParams Typically the $_SERVER superglobal
71 array $serverParams = [] argument
73 $this->serverParams = $serverParams;
/plugin/matrixnotifierwas/vendor/psr/http-factory/src/
DServerRequestFactoryInterface.php18 * @param array $serverParams Array of SAPI parameters with which to seed
23 …public function createServerRequest(string $method, $uri, array $serverParams = []): ServerRequest… argument