1 | <?php |
||
16 | class ChapiConfigLoader implements ChapiConfigLoaderInterface |
||
17 | { |
||
18 | /** |
||
19 | * @var ContainerBuilder |
||
20 | */ |
||
21 | private $container; |
||
22 | |||
23 | /** |
||
24 | * @var ChapiConfigInterface |
||
25 | */ |
||
26 | private $config; |
||
27 | |||
28 | /** |
||
29 | * ChapiConfigLoader constructor. |
||
30 | * @param ContainerBuilder $container |
||
31 | * @param ChapiConfigInterface $config |
||
32 | */ |
||
33 | 3 | public function __construct(ContainerBuilder $container, ChapiConfigInterface $config) |
|
38 | |||
39 | /** |
||
40 | * @inheritdoc |
||
41 | */ |
||
42 | 3 | public function loadProfileParameters() |
|
65 | |||
66 | /** |
||
67 | * @param array $content |
||
68 | * @throws InvalidArgumentException |
||
69 | * @return void |
||
70 | */ |
||
71 | 1 | private function validate(array &$content) |
|
77 | |||
78 | /** |
||
79 | * @param array $parameters |
||
80 | */ |
||
81 | 1 | private function setParameters(array &$parameters) |
|
87 | } |
||
88 |