[FrameworkBundle] Use static closure in front controller (8.1) (#1532)

Added missing static for framework-bundle 8.1.
This commit is contained in:
Micha Ahrweiler
2026-05-30 17:09:58 +02:00
committed by GitHub
parent dd3e831144
commit b7e08038bb
@@ -4,6 +4,6 @@ use App\Kernel;
require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
return function (array $context) {
return static function (array $context) {
return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
};