1: | <?php |
2: | |
3: | namespace ngatngay\database; |
4: | |
5: | use ArrayObject; |
6: | |
7: | class row extends ArrayObject |
8: | { |
9: | public function __get(string $name): mixed |
10: | { |
11: | return $this[$name]; |
12: | } |
13: | |
14: | public function __set(string $name, mixed $val): void |
15: | { |
16: | $this[$name] = $val; |
17: | } |
18: | } |
19: | |