Total Complexity | 2 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | final class GwebSyliusProductDepositExtension extends Extension |
||
14 | { |
||
15 | /** |
||
16 | * {@inheritdoc} |
||
17 | */ |
||
18 | public function load(array $config, ContainerBuilder $container): void |
||
19 | { |
||
20 | $config = $this->processConfiguration($this->getConfiguration([], $container), $config); |
||
|
|||
21 | $loader = new YamlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config')); |
||
22 | |||
23 | $loader->load('services.yml'); |
||
24 | } |
||
25 | |||
26 | public function getConfiguration(array $config, ContainerBuilder $container): ConfigurationInterface |
||
29 | } |
||
30 | } |
||
31 |