| 1 | <?php |
||
| 5 | abstract class Environment implements IEnvironment |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * @var array |
||
| 9 | */ |
||
| 10 | protected $container = []; |
||
| 11 | |||
| 12 | 9 | public function offsetSet($offset, $value) |
|
| 20 | |||
| 21 | 9 | public function offsetExists($offset) |
|
| 25 | |||
| 26 | public function offsetUnset($offset) |
||
| 30 | |||
| 31 | 21 | public function offsetGet($offset) |
|
| 35 | } |
||
| 36 |