| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 32 | public function load(array $configs, ContainerBuilder $container): void |
||
| 33 | { |
||
| 34 | $loader = new YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); |
||
| 35 | $loader->load('services.yaml'); |
||
| 36 | |||
| 37 | if (\interface_exists(FormTypeGuesserInterface::class)) { |
||
| 38 | $loader->load('form_type_guesser.yaml'); |
||
| 39 | } |
||
| 40 | } |
||
| 41 | } |
||
| 42 |