N°6937 - Symfony 6.4 - Handle Symfony configuration files

This commit is contained in:
Benjamin Dalsass
2024-02-26 10:38:36 +01:00
committed by Molkobain
parent c7a8d90364
commit b29597110e
18 changed files with 19 additions and 15 deletions

View File

@@ -35,7 +35,7 @@ class Kernel extends BaseKernel
private function getConfigDir(): string
{
return $this->getProjectDir() . '/symfony/config';
return $this->getProjectDir() . '/resources/symfony/config';
}
public function getCacheDir(): string
@@ -46,6 +46,6 @@ class Kernel extends BaseKernel
public function getLogDir(): string
{
return $this->getProjectDir() . 'log/symfony';
return $this->getProjectDir() . '/log/symfony';
}
}