1 | <?php |
||
10 | class ConfigurationFileNormalizer implements NormalizerInterface, DenormalizerInterface |
||
11 | { |
||
12 | /** @var AppNormalizer */ |
||
13 | private $appNormalizer; |
||
14 | /** @var AppDenormalizer */ |
||
15 | private $appDenormalizer; |
||
16 | |||
17 | /** |
||
18 | * @param AppNormalizer $appNormalizer |
||
19 | * @param AppDenormalizer $appDenormalizer |
||
20 | */ |
||
21 | 6 | public function __construct( |
|
28 | |||
29 | /** |
||
30 | * {@inheritdoc} |
||
31 | */ |
||
32 | 1 | public function normalize($object, $format = null, array $context = array()) |
|
36 | |||
37 | /** |
||
38 | * {@inheritdoc} |
||
39 | */ |
||
40 | 2 | public function supportsNormalization($data, $format = null) |
|
44 | |||
45 | /** |
||
46 | * {@inheritdoc} |
||
47 | */ |
||
48 | 1 | public function denormalize($data, $class, $format = null, array $context = array()) |
|
52 | |||
53 | /** |
||
54 | * {@inheritdoc} |
||
55 | */ |
||
56 | 2 | public function supportsDenormalization($data, $type, $format = null) |
|
60 | } |
||
61 |