1 | <?php |
||
5 | class SimpleResultSet implements \IteratorAggregate, \Countable, \ArrayAccess |
||
6 | { |
||
7 | protected $result; |
||
8 | |||
9 | 3 | public function __construct(array $result) |
|
13 | |||
14 | 3 | public function getIterator() |
|
18 | |||
19 | 3 | public function count() |
|
23 | |||
24 | public function offsetExists($offset) |
||
28 | |||
29 | public function &offsetGet($offset) |
||
33 | |||
34 | public function offsetSet($offset, $value) |
||
38 | |||
39 | public function offsetUnset($offset) |
||
43 | } |
||
44 |