1 | <?php |
||
12 | final class Extensions implements \ArrayAccess |
||
13 | { |
||
14 | private $extensions; |
||
15 | |||
16 | public function __construct(array $extensions) |
||
20 | |||
21 | /** |
||
22 | * {@inheritdoc} |
||
23 | */ |
||
24 | public function offsetExists($offset) |
||
28 | |||
29 | /** |
||
30 | * {@inheritdoc} |
||
31 | */ |
||
32 | public function offsetGet($offset) |
||
40 | |||
41 | /** |
||
42 | * {@inheritdoc} |
||
43 | */ |
||
44 | public function offsetSet($offset, $value) |
||
48 | |||
49 | /** |
||
50 | * {@inheritdoc} |
||
51 | */ |
||
52 | public function offsetUnset($offset) |
||
56 | } |
||
57 |