Issues (24)

src/Kernel.php (1 issue)

Severity
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
The trait Symfony\Bundle\Framework...Kernel\MicroKernelTrait requires some properties which are not provided by App\Kernel: $instanceof, $name
Loading history...
11
12
    public function getCacheDir(): string
13
    {
14
        return dirname(__DIR__).'/var/symfony/cache';
15
    }
16
}
17