| 1 | <?php |
||
| 21 | class YamlLugUiExtensionTest extends AbstractLugUiExtensionTest |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * {@inheritdoc} |
||
| 25 | */ |
||
| 26 | protected function loadConfiguration(ContainerBuilder $container, $configuration) |
||
| 27 | { |
||
| 28 | $loader = new YamlFileLoader($container, new FileLocator(__DIR__.'/Fixtures/Yaml/')); |
||
| 29 | $loader->load($configuration.'.yml'); |
||
| 30 | } |
||
| 31 | } |
||
| 32 |