[symfony/framework-bundle/7.2] Start with an empty APP_SECRET (#1317)

This commit is contained in:
Nicolas Grekas
2024-05-28 17:35:19 +02:00
committed by GitHub
parent f20a7f1f6b
commit e0cf9602a7
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;
}