Files
tonehaus/public/index.php
2025-10-31 22:09:19 +00:00

12 lines
354 B
PHP

<?php
use App\Kernel;
// Bootstrap Composer runtime autoloader used by Symfony Runtime component
require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
// Return a closure that creates the Kernel with env/debug from runtime context
return function (array $context) {
return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
};