Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | public function load(array $configs, ContainerBuilder $container): void |
||
16 | { |
||
17 | $loader = new YamlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config')); |
||
18 | $loader->load('services.yaml'); |
||
19 | |||
20 | $container->registerForAutoconfiguration(MenuInterface::class) |
||
21 | ->addTag('menu'); |
||
22 | } |
||
24 |