1 | <?php |
||
10 | trait ArraySerializer |
||
11 | { |
||
12 | 6 | public function toArray() |
|
16 | |||
17 | 3 | public function fromArray($array) |
|
18 | { |
||
19 | 3 | return $this->getReverseRepresentation($array); |
|
20 | } |
||
21 | |||
22 | protected abstract function getRepresentation(); |
||
23 | |||
24 | protected abstract function getReverseRepresentation($projection); |
||
25 | } |
||
26 |