Remove configuration defaults for the container

This commit is contained in:
Fabien Potencier
2025-03-16 10:10:34 -05:00
parent 09a1fb3114
commit cb173cf8d3
10 changed files with 121 additions and 0 deletions
@@ -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;
}