1 | <?php |
||
16 | final class VerbNormalizer implements DenormalizerInterface, SerializerAwareInterface |
||
17 | { |
||
18 | private $serializer; |
||
19 | |||
20 | /** |
||
21 | * {@inheritdoc} |
||
22 | */ |
||
23 | 368 | public function setSerializer(SerializerInterface $serializer) |
|
27 | |||
28 | /** |
||
29 | * {@inheritdoc} |
||
30 | */ |
||
31 | 42 | public function denormalize($data, $class, $format = null, array $context = array()) |
|
46 | |||
47 | /** |
||
48 | * {@inheritdoc} |
||
49 | */ |
||
50 | 87 | public function supportsDenormalization($data, $type, $format = null) |
|
54 | } |
||
55 |