Total Complexity | 7 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
15 | class JsonSerializableNormalizer implements NormalizerInterface |
||
16 | { |
||
17 | private $objectNormalizer; |
||
18 | |||
19 | public function __construct(NormalizerInterface $objectNormalizer) |
||
20 | { |
||
21 | $this->objectNormalizer = $objectNormalizer; |
||
22 | } |
||
23 | |||
24 | public function normalize($topic, $format = null, array $context = []) |
||
29 | } |
||
30 | |||
31 | public function supportsNormalization($data, $format = null) |
||
40 |