You are here

public function Client::setServerParameter in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/browser-kit/Client.php \Symfony\Component\BrowserKit\Client::setServerParameter()

Sets single server parameter.

Parameters

string $key A key of the parameter:

string $value A value of the parameter:

File

vendor/symfony/browser-kit/Client.php, line 117

Class

Client
Client simulates a browser.

Namespace

Symfony\Component\BrowserKit

Code

public function setServerParameter($key, $value) {
  $this->server[$key] = $value;
}