1 | <?php |
||
9 | trait HydratableTrait |
||
10 | { |
||
11 | |||
12 | public static function preProcess(array $objectArray): array |
||
16 | |||
17 | /** |
||
18 | * @param array $objectArray |
||
19 | * |
||
20 | * @return static |
||
21 | * @throws \Audiens\DoubleclickClient\exceptions\ClientException |
||
22 | * @throws \Zend\Hydrator\Exception\BadMethodCallException |
||
23 | */ |
||
24 | public static function fromArray(array $objectArray) |
||
53 | |||
54 | public function toArray(): array |
||
58 | |||
59 | private static function getHydrator(): Reflection |
||
63 | } |
||
64 |