1 | <?php |
||
24 | class ArrayAccessible implements ArrayAccess, IteratorAggregate, Arrayable |
||
25 | { |
||
26 | private $array; |
||
27 | |||
28 | public function __construct(array $array = []) |
||
32 | |||
33 | public function offsetExists($offset) |
||
37 | |||
38 | public function offsetGet($offset) |
||
42 | |||
43 | public function offsetSet($offset, $value) |
||
51 | |||
52 | public function offsetUnset($offset) |
||
56 | |||
57 | public function getIterator() |
||
61 | |||
62 | public function toArray() |
||
66 | } |
||
67 |