Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
24 | 4 | public function load(array $configs, ContainerBuilder $container) |
|
25 | { |
||
26 | 4 | $configuration = new Configuration(); |
|
27 | 4 | $config = $this->processConfiguration($configuration, $configs); |
|
28 | |||
29 | 1 | $loader = new Loader\YamlFileLoader($container, new FileLocator( |
|
30 | __DIR__ . '/../Resources/config' |
||
31 | 1 | )); |
|
32 | |||
33 | 1 | $loader->load('services.yml'); |
|
34 | 1 | } |
|
35 | |||
37 |