Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
29 | public function normalize($object, $format = null, array $context = []) |
||
30 | { |
||
31 | $object->setReferences($this->references); |
||
32 | $data = parent::normalize($object, $format, $context); |
||
33 | $this->references = array_merge($this->references, $object->getReferences()); |
||
34 | |||
35 | return $data; |
||
36 | } |
||
37 | |||
46 |