| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 25 | public function normalize($object, $format = null, array $context = []) |
||
| 26 | { |
||
| 27 | $normalizedValues = $this->baseNormalizer->normalize($object, $format, $context); |
||
| 28 | |||
| 29 | $normalizedValues['type'] = $object->getType(); |
||
| 30 | $normalizedValues['type_config'] = $object->getTypeConfig(); |
||
| 31 | $normalizedValues['constraints'] = $object->getConstraints(); |
||
| 32 | |||
| 33 | return $normalizedValues; |
||
| 34 | } |
||
| 46 |