| 1 | <?php |
||
| 13 | class ArrayAccessible implements ArrayAccess, IteratorAggregate, Arrayable |
||
| 14 | { |
||
| 15 | private $array; |
||
| 16 | |||
| 17 | public function __construct(array $array = []) |
||
| 21 | |||
| 22 | public function offsetExists($offset) |
||
| 26 | |||
| 27 | public function offsetGet($offset) |
||
| 31 | |||
| 32 | public function offsetSet($offset, $value) |
||
| 40 | |||
| 41 | public function offsetUnset($offset) |
||
| 45 | |||
| 46 | public function getIterator() |
||
| 50 | |||
| 51 | public function toArray() |
||
| 55 | } |
||
| 56 |