| Total Complexity | 4 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | class PrimaryKeyReferenceNormalizer implements NormalizerInterface, DenormalizerInterface |
||
| 15 | { |
||
| 16 | public function denormalize($data, string $type, string $format = null, array $context = []) |
||
| 17 | { |
||
| 18 | throw new LogicException('Not implemented yet'); |
||
| 19 | } |
||
| 20 | |||
| 21 | |||
| 22 | public function supportsDenormalization($data, string $type, string $format = null) |
||
| 25 | } |
||
| 26 | |||
| 27 | |||
| 28 | public function normalize($object, string $format = null, array $context = []) |
||
| 32 | } |
||
| 33 | |||
| 34 | public function supportsNormalization($data, string $format = null) |
||
| 39 |