1 | <?php |
||
9 | class Entity extends \ArrayObject |
||
10 | { |
||
11 | /** |
||
12 | * @param string $key |
||
13 | * @param string|int|float|array|bool $default |
||
14 | * |
||
15 | * @return mixed |
||
16 | */ |
||
17 | protected function getEntityValue($key, $default) |
||
21 | |||
22 | /** |
||
23 | * Returns the json representation of the current object. |
||
24 | * |
||
25 | * @return string |
||
26 | */ |
||
27 | public function json() |
||
35 | } |
||
36 |