1 | <?php |
||
12 | final class PlainMessageNormalizer implements NormalizerInterface, DenormalizerInterface |
||
13 | { |
||
14 | /** |
||
15 | * {@inheritdoc} |
||
16 | */ |
||
17 | 1 | public function normalize($object, $format = null, array $context = []) |
|
24 | |||
25 | /** |
||
26 | * {@inheritdoc} |
||
27 | */ |
||
28 | 1 | public function denormalize($data, $class, $format = null, array $context = []) |
|
40 | |||
41 | /** |
||
42 | * {@inheritdoc} |
||
43 | */ |
||
44 | public function supportsDenormalization($data, $type, $format = null) |
||
48 | |||
49 | /** |
||
50 | * {@inheritdoc} |
||
51 | */ |
||
52 | public function supportsNormalization($data, $format = null) |
||
56 | } |
||
57 |