| 1 | <?php |
||
| 15 | class SerializerDenormalizer implements DenormalizerInterface, SerializerInterface |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @inheritDoc |
||
| 19 | */ |
||
| 20 | public function denormalize($data, $type, $format = null, array $context = []) |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @inheritDoc |
||
| 27 | */ |
||
| 28 | public function supportsDenormalization($data, $type, $format = null) |
||
| 32 | |||
| 33 | public function serialize($data, $format, array $context = []) |
||
| 37 | |||
| 38 | public function deserialize($data, $type, $format, array $context = []) |
||
| 42 | } |
||
| 43 |