| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types = 1); |
||
| 18 | public function load(array $configs, ContainerBuilder $container): void |
||
| 19 | { |
||
| 20 | $loader = new YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); |
||
| 21 | $loader->load('services.yml'); |
||
| 22 | |||
| 23 | $configuration = new Configuration(); |
||
| 24 | $config = $this->processConfiguration($configuration, $configs); |
||
| 25 | |||
| 26 | $container->getDefinition('bukashk0zzz_filter.form_type_extension') |
||
| 27 | ->addArgument($config['auto_filter_forms']) |
||
| 28 | ; |
||
| 31 |