1 | <?php |
||
21 | final class Extensions implements \ArrayAccess |
||
22 | { |
||
23 | private $extensions; |
||
24 | |||
25 | public function __construct(array $extensions) |
||
29 | |||
30 | /** |
||
31 | * {@inheritdoc} |
||
32 | */ |
||
33 | public function offsetExists($offset) |
||
37 | |||
38 | /** |
||
39 | * {@inheritdoc} |
||
40 | */ |
||
41 | public function offsetGet($offset) |
||
49 | |||
50 | /** |
||
51 | * {@inheritdoc} |
||
52 | */ |
||
53 | public function offsetSet($offset, $value) |
||
57 | |||
58 | /** |
||
59 | * {@inheritdoc} |
||
60 | */ |
||
61 | public function offsetUnset($offset) |
||
65 | } |
||
66 |