[BrowserKit] added the method to Client which enables to set single server parameter

This commit is contained in:
hidenorigoto 2011-04-17 10:45:32 +09:00
parent c6818d8bf7
commit 54c3d236c2

View File

@ -108,6 +108,17 @@ abstract class Client
), $server);
}
/**
* Sets single server parameter.
*
* @param string $key A key of the parameter
* @param string $value A value of the parameter
*/
public function setServerParameter($key, $value)
{
$this->server[$key] = $value;
}
/**
* Returns the History instance.
*