1 | <?php |
||
23 | final class DocumentDataNormalizer implements DenormalizerInterface, NormalizerInterface |
||
24 | { |
||
25 | /** |
||
26 | * {@inheritdoc} |
||
27 | */ |
||
28 | public function normalize($object, $format = null, array $context = array()) |
||
36 | |||
37 | /** |
||
38 | * {@inheritdoc} |
||
39 | */ |
||
40 | public function supportsNormalization($data, $format = null) |
||
44 | |||
45 | /** |
||
46 | * {@inheritdoc} |
||
47 | */ |
||
48 | public function denormalize($data, $class, $format = null, array $context = array()) |
||
52 | |||
53 | /** |
||
54 | * {@inheritdoc} |
||
55 | */ |
||
56 | public function supportsDenormalization($data, $type, $format = null) |
||
60 | } |
||
61 |