1 | <?php |
||
13 | class PlainMessageNormalizer implements NormalizerInterface, DenormalizerInterface |
||
14 | { |
||
15 | /** |
||
16 | * {@inheritdoc} |
||
17 | */ |
||
18 | public function normalize($object, $format = null, array $context = []) |
||
25 | |||
26 | /** |
||
27 | * {@inheritdoc} |
||
28 | */ |
||
29 | public function denormalize($data, $class, $format = null, array $context = []) |
||
35 | |||
36 | /** |
||
37 | * {@inheritdoc} |
||
38 | */ |
||
39 | public function supportsDenormalization($data, $type, $format = null) |
||
43 | |||
44 | /** |
||
45 | * {@inheritdoc} |
||
46 | */ |
||
47 | public function supportsNormalization($data, $format = null) |
||
51 | } |
||
52 |