1 | <?php |
||
8 | class ConfigurationNormalizer implements NormalizerInterface |
||
9 | { |
||
10 | /** @var AppConfigNormalizer */ |
||
11 | private $appConfigurationNormalizer; |
||
12 | |||
13 | /** |
||
14 | * @param AppConfigNormalizer $appConfigurationNormalizer |
||
15 | */ |
||
16 | 3 | public function __construct(AppConfigNormalizer $appConfigurationNormalizer) |
|
20 | |||
21 | /** |
||
22 | * {@inheritdoc} |
||
23 | */ |
||
24 | 1 | public function normalize($object, $format = null, array $context = array()) |
|
28 | |||
29 | /** |
||
30 | * {@inheritdoc} |
||
31 | */ |
||
32 | 2 | public function supportsNormalization($data, $format = null) |
|
36 | } |
||
37 |