Kernel and Form

This commit is contained in:
2024-05-13 21:08:35 -04:00
parent 658b021962
commit 732f37e02f
2 changed files with 59 additions and 0 deletions

11
src/Kernel.php Normal file
View File

@ -0,0 +1,11 @@
<?php
namespace App;
use Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait;
use Symfony\Component\HttpKernel\Kernel as BaseKernel;
class Kernel extends BaseKernel
{
use MicroKernelTrait;
}