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