| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | public function load(array $configs, ContainerBuilder $container) |
||
| 13 | { |
||
| 14 | $configuration = new Configuration(); |
||
| 15 | $this->processConfiguration($configuration, $configs); |
||
| 16 | |||
| 17 | $loader = new Loader\YamlFileLoader( |
||
| 18 | $container, |
||
| 19 | new FileLocator(__DIR__ . '/../Resources/config') |
||
| 20 | ); |
||
| 21 | |||
| 22 | $loader->load('services.yml'); |
||
| 23 | } |
||
| 25 |