1 | <?php |
||
20 | final class SymfonyConfigurationProcessor implements ConfigurationProcessorInterface |
||
21 | { |
||
22 | /** |
||
23 | * @var ConfigurationInterface |
||
24 | */ |
||
25 | private $configuration; |
||
26 | |||
27 | /** |
||
28 | * @var Processor |
||
29 | */ |
||
30 | private $processor; |
||
31 | |||
32 | /** |
||
33 | * @param ConfigurationInterface $configuration |
||
34 | * @param Processor $processor |
||
35 | */ |
||
36 | public function __construct(ConfigurationInterface $configuration, Processor $processor) |
||
41 | |||
42 | /** |
||
43 | * {@inheritdoc} |
||
44 | */ |
||
45 | public function process(array $configs) |
||
49 | } |
||
50 |