Searched refs:serverParams (Results 1 – 4 of 4) sorted by relevance
52 private $serverParams; variable in GuzzleHttp\\Psr7\\ServerRequest65 * @param array $serverParams Typically the $_SERVER superglobal73 array $serverParams = [] argument75 $this->serverParams = $serverParams;
67 …public function createServerRequest(string $method, $uri, array $serverParams = []): ServerRequest… argument70 if (!empty($serverParams['REQUEST_METHOD'])) {71 $method = $serverParams['REQUEST_METHOD'];77 return new ServerRequest($method, $uri, [], null, '1.1', $serverParams);
50 private $serverParams; variable in GuzzleHttp\\Psr7\\ServerRequest63 * @param array $serverParams Typically the $_SERVER superglobal71 array $serverParams = [] argument73 $this->serverParams = $serverParams;
18 * @param array $serverParams Array of SAPI parameters with which to seed23 …public function createServerRequest(string $method, $uri, array $serverParams = []): ServerRequest… argument