1 | <?php |
||
21 | final class DocumentDataNormalizer implements DenormalizerInterface, NormalizerInterface |
||
22 | { |
||
23 | /** |
||
24 | * {@inheritdoc} |
||
25 | */ |
||
26 | 1 | public function normalize($object, $format = null, array $context = array()) |
|
34 | |||
35 | /** |
||
36 | * {@inheritdoc} |
||
37 | */ |
||
38 | 10 | public function supportsNormalization($data, $format = null) |
|
42 | |||
43 | /** |
||
44 | * {@inheritdoc} |
||
45 | */ |
||
46 | 1 | public function denormalize($data, $class, $format = null, array $context = array()) |
|
50 | |||
51 | /** |
||
52 | * {@inheritdoc} |
||
53 | */ |
||
54 | 11 | public function supportsDenormalization($data, $type, $format = null) |
|
58 | } |
||
59 |