1 | <?php |
||
16 | class ApplicationStub implements ArrayAccess |
||
17 | { |
||
18 | protected $attributes = []; |
||
19 | |||
20 | public function setAttributes($attributes) |
||
24 | |||
25 | public function instance($key, $instance) |
||
29 | |||
30 | public function offsetExists($offset) |
||
34 | |||
35 | public function offsetGet($key) |
||
39 | |||
40 | public function offsetSet($key, $value) |
||
44 | |||
45 | public function offsetUnset($key) |
||
49 | } |
||
50 |