1 | <?php |
||
2 | |||
3 | namespace App; |
||
4 | |||
5 | use Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait; |
||
6 | use Symfony\Component\HttpKernel\Kernel as BaseKernel; |
||
7 | |||
8 | class Kernel extends BaseKernel |
||
9 | { |
||
10 | use MicroKernelTrait; |
||
0 ignored issues
–
show
introduced
by
![]() |
|||
11 | |||
12 | public function getCacheDir(): string |
||
13 | { |
||
14 | return dirname(__DIR__).'/var/symfony/cache'; |
||
15 | } |
||
16 | } |
||
17 |