| 1 | <?php |
||
| 8 | class Normalizer extends AbstractAggregateNormalizerAware implements NormalizerInterface, DenormalizerInterface |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * {@inheritdoc} |
||
| 12 | */ |
||
| 13 | public function supportsNormalization($data, $format = null) |
||
| 17 | |||
| 18 | /** |
||
| 19 | * {@inheritdoc} |
||
| 20 | */ |
||
| 21 | public function supportsDenormalization($data, $type, $format = null) |
||
| 25 | |||
| 26 | /** |
||
| 27 | * {@inheritdoc} |
||
| 28 | */ |
||
| 29 | public function normalize($object, $format = null, array $context = array()) |
||
| 43 | |||
| 44 | /** |
||
| 45 | * {@inheritdoc} |
||
| 46 | */ |
||
| 47 | public function denormalize($data, $class, $format = null, array $context = array()) |
||
| 55 | } |
||
| 56 |