Symfony Init

This commit is contained in:
Angels-dev
2024-08-18 23:17:33 +02:00
parent 1a8eeaa858
commit 2be55bc65d
17 changed files with 2733 additions and 1 deletions

0
src/Controller/.gitignore vendored Normal file
View File

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;
}