Total Complexity | 3 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | class Row implements IRow |
||
15 | { |
||
16 | /** @var NetteRow<string|int, string|int|float|bool|null> */ |
||
17 | protected NetteRow $row; |
||
18 | |||
19 | /** |
||
20 | * @param NetteRow<string|int, string|int|float|bool|null> $row |
||
21 | */ |
||
22 | public function __construct(NetteRow $row) |
||
23 | { |
||
24 | $this->row = $row; |
||
25 | } |
||
26 | |||
27 | public function getValue($property) |
||
30 | } |
||
31 | |||
32 | public function __isset($name) |
||
35 | } |
||
36 | } |
||
37 |