| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | public function load(array $config, ContainerBuilder $container) |
||
| 16 | { |
||
| 17 | if ($container->getParameter('kernel.environment') !== 'dev') { |
||
| 18 | return; |
||
| 19 | } |
||
| 20 | |||
| 21 | $loader = new YamlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config')); |
||
| 22 | $loader->load('services.yml'); |
||
| 23 | } |
||
| 24 | } |
||
| 25 |