| 1 | <?php |
||
| 14 | class Config implements \ArrayAccess |
||
| 15 | { |
||
| 16 | private $config = array( |
||
| 17 | 'adapter' => 'fastcgi', |
||
| 18 | 'fastcgi' => null, |
||
| 19 | 'temp_dir' => null |
||
| 20 | ); |
||
| 21 | |||
| 22 | 6 | public function __construct(array $config = array()) |
|
| 32 | |||
| 33 | 6 | public function offsetExists($offset) |
|
| 37 | |||
| 38 | 4 | public function offsetGet($offset) |
|
| 44 | |||
| 45 | 3 | public function offsetSet($offset, $value) |
|
| 49 | |||
| 50 | 1 | public function offsetUnset($offset) |
|
| 54 | } |
||
| 55 |