1 | <?php |
||
11 | class ServerBag extends ValueBag |
||
12 | { |
||
13 | public function __construct() |
||
17 | |||
18 | /** |
||
19 | * Returns a SERVER parameter by name. |
||
20 | * |
||
21 | * @param string $key |
||
22 | * @param mixed|null $default The default value if the parameter key does not exist |
||
23 | * @return mixed|null |
||
24 | */ |
||
25 | public function fetch(string $key, $default = null) |
||
34 | } |