Get tests working again

This commit is contained in:
Brabli
2022-07-20 21:57:48 +01:00
parent bebb5f09e2
commit cc2bd529d2
3 changed files with 6 additions and 4 deletions

View File

@@ -29,8 +29,9 @@ class AppKernel extends Kernel
/**
* @param LoaderInterface $loader
*/
public function registerContainerConfiguration(LoaderInterface $loader)
public function registerContainerConfiguration(LoaderInterface $loader): void
{
dump(__DIR__.'/config_'.$this->getEnvironment().'.yml');
$loader->load(__DIR__.'/config_'.$this->getEnvironment().'.yml');
}
}