1 | <?php |
||
10 | class BasicValueObjectNormalizer implements |
||
11 | NormalizerInterface, |
||
12 | DenormalizerInterface |
||
13 | { |
||
14 | /** |
||
15 | * {@inheritdoc} |
||
16 | */ |
||
17 | 9 | public function normalize($object, $format = null, array $context = []) |
|
30 | |||
31 | /** |
||
32 | * {@inheritdoc} |
||
33 | */ |
||
34 | 12 | public function supportsNormalization($data, $format = null) |
|
38 | |||
39 | /** |
||
40 | * {@inheritdoc} |
||
41 | */ |
||
42 | 6 | public function denormalize( |
|
50 | |||
51 | /** |
||
52 | * {@inheritdoc} |
||
53 | */ |
||
54 | 6 | public function supportsDenormalization($data, $type, $format = null) |
|
59 | } |
||
60 |