Files
Lesstime/public/index.php
2026-03-08 19:47:19 +01:00

12 lines
225 B
PHP

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