Total Complexity | 3 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | class Row implements IRow |
||
15 | { |
||
16 | protected ArrayIterator $row; |
||
17 | |||
18 | public function __construct(ArrayIterator $row) |
||
19 | { |
||
20 | $this->row = $row; |
||
21 | } |
||
22 | |||
23 | public function getValue($property) |
||
24 | { |
||
25 | return $this->row->offsetGet($property); |
||
26 | } |
||
27 | |||
28 | public function __isset($name) |
||
31 | } |
||
32 | } |
||
33 |