1 | <?php |
||
21 | final class AccountNormalizer implements DenormalizerInterface, NormalizerInterface |
||
22 | { |
||
23 | /** |
||
24 | * {@inheritdoc} |
||
25 | */ |
||
26 | public function normalize($object, $format = null, array $context = array()) |
||
37 | |||
38 | /** |
||
39 | * {@inheritdoc} |
||
40 | */ |
||
41 | public function supportsNormalization($data, $format = null) |
||
45 | |||
46 | /** |
||
47 | * {@inheritdoc} |
||
48 | */ |
||
49 | public function denormalize($data, $class, $format = null, array $context = array()) |
||
64 | |||
65 | /** |
||
66 | * {@inheritdoc} |
||
67 | */ |
||
68 | public function supportsDenormalization($data, $type, $format = null) |
||
72 | } |
||
73 |