Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 2 |
Lines | 0 |
Ratio | 0 % |
Tests | 1 |
CRAP Score | 1 |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
27 | public function normalizeField( |
||
28 | string $path, |
||
29 | $object, |
||
30 | NormalizerContextInterface $context, |
||
31 | NormalizerInterface $normalizer = null |
||
32 | ) { |
||
33 | @trigger_error(sprintf('Use %s instead', DateTimeFieldNormalizer::class), E_USER_DEPRECATED); |
||
34 | 4 | ||
35 | return $this->fieldNormalizer->normalizeField($path, $object, $context, $normalizer); |
||
36 | } |
||
38 |