2026-04-09 20:21:01 +02:00
|
|
|
<?php declare(strict_types=1);
|
2019-10-26 18:07:36 +02:00
|
|
|
|
|
|
|
|
namespace App;
|
|
|
|
|
|
|
|
|
|
use Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait;
|
|
|
|
|
use Symfony\Component\HttpKernel\Kernel as BaseKernel;
|
|
|
|
|
|
|
|
|
|
class Kernel extends BaseKernel
|
|
|
|
|
{
|
|
|
|
|
use MicroKernelTrait;
|
|
|
|
|
|
2026-04-09 12:10:37 +02:00
|
|
|
public function getCacheDir(): string
|
2019-10-26 18:07:36 +02:00
|
|
|
{
|
|
|
|
|
return $this->getProjectDir().'/var/cache/'.$this->environment;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-09 12:10:37 +02:00
|
|
|
public function getLogDir(): string
|
2019-10-26 18:07:36 +02:00
|
|
|
{
|
|
|
|
|
return $this->getProjectDir().'/var/log';
|
|
|
|
|
}
|
2026-04-09 20:21:01 +02:00
|
|
|
}
|