| 1 | <?php |
||
| 15 | class DBResultRow extends DBResult{ |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @var mixed[] |
||
| 19 | */ |
||
| 20 | protected $array = []; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @param string $name |
||
| 24 | * @param array $arguments |
||
| 25 | * |
||
| 26 | * @return mixed|null |
||
| 27 | */ |
||
| 28 | public function __call(string $name, array $arguments){ |
||
| 41 | |||
| 42 | /** |
||
| 43 | * @param string $name |
||
| 44 | * |
||
| 45 | * @return mixed|null |
||
| 46 | */ |
||
| 47 | public function __get(string $name) { |
||
| 55 | |||
| 56 | /** |
||
| 57 | * @link http://api.prototypejs.org/language/Enumerable/prototype/toArray/ |
||
| 58 | * |
||
| 59 | * @return array |
||
| 60 | */ |
||
| 61 | public function __toArray():array { |
||
| 64 | |||
| 65 | /** |
||
| 66 | * @param int $offset |
||
| 67 | * @param mixed $value |
||
| 68 | * |
||
| 69 | * @return void |
||
| 70 | */ |
||
| 71 | public function offsetSet($offset, $value){ |
||
| 85 | |||
| 86 | } |
||
| 87 |