1 | <?php |
||
10 | class Row implements \ArrayAccess, \IteratorAggregate, \Countable |
||
11 | { |
||
12 | protected $byIndex = []; |
||
13 | protected $byHeader = []; |
||
14 | protected $headers; |
||
15 | |||
16 | public function __construct(QuiteSimpleXMLElement $data, $headers) |
||
25 | |||
26 | public function __get($name) |
||
30 | |||
31 | public function offsetSet($offset, $value) |
||
35 | |||
36 | public function offsetExists($offset) |
||
40 | |||
41 | public function offsetUnset($offset) |
||
45 | |||
46 | public function offsetGet($offset) |
||
55 | |||
56 | public function getIterator() |
||
60 | |||
61 | public function count() |
||
65 | |||
66 | public function toArray() |
||
70 | } |
||
71 |