| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | public function load(array $configs, ContainerBuilder $container) |
||
| 13 | { |
||
| 14 | $loader = new YamlFileLoader($container, new FileLocator([ |
||
| 15 | __DIR__.'/../Resources/config', |
||
| 16 | ])); |
||
| 17 | $loader->load('services.yaml'); |
||
| 18 | |||
| 19 | $configuration = new Configuration(); |
||
| 20 | $config = $this->processConfiguration($configuration, $configs); |
||
| 21 | $container->setParameter('jk_notification.config', $config); |
||
| 22 | } |
||
| 29 |