| 1 | <?php |
||
| 11 | trait HydratableTrait |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @param array $objectArray |
||
| 15 | * |
||
| 16 | * @return self |
||
| 17 | */ |
||
| 18 | public static function fromArray(array $objectArray) |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @return array |
||
| 29 | */ |
||
| 30 | public function toArray() |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @return ObjectProperty |
||
| 37 | */ |
||
| 38 | private static function getHydrator() |
||
| 48 | } |
||
| 49 |