1
0
Fork 0
get-installer-bootstrap/public/index.php
2026-05-05 09:30:51 +02:00

9 lines
206 B
PHP

<?php
use App\Kernel;
require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
return static function (array $context) {
return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
};