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, $type, $format = null, array $context = []) |
||
17 | { |
||
18 | throw new LogicException('Not implemented yet'); |
||
19 | } |
||
20 | |||
21 | |||
22 | public function supportsDenormalization($data, $type, $format = null) |
||
25 | } |
||
26 | |||
27 | |||
28 | public function normalize($object, $format = null, array $context = []) |
||
32 | } |
||
33 | |||
34 | public function supportsNormalization($data, $format = null) |
||
37 | } |
||
38 | } |
||
39 |