1 | <?php |
||
19 | final class ConfigurationProcessingLoader implements ConfigurationLoaderInterface |
||
20 | { |
||
21 | /** |
||
22 | * @var ConfigurationLoaderInterface |
||
23 | */ |
||
24 | private $decoratedLoader; |
||
25 | |||
26 | /** |
||
27 | * @var ConfigurationProcessorInterface |
||
28 | */ |
||
29 | private $configurationProcessor; |
||
30 | |||
31 | /** |
||
32 | * @param ConfigurationLoaderInterface $decoratedLoader |
||
33 | * @param ConfigurationProcessorInterface $configurationProcessor |
||
34 | */ |
||
35 | public function __construct(ConfigurationLoaderInterface $decoratedLoader, ConfigurationProcessorInterface $configurationProcessor) |
||
40 | |||
41 | /** |
||
42 | * {@inheritdoc} |
||
43 | */ |
||
44 | public function load($identifier) |
||
55 | } |
||
56 |