futtern/public/index.php

8 lines
221 B
PHP
Raw Permalink Normal View History

2024-06-10 17:16:55 +00:00
<?php declare(strict_types=1);
use App\Kernel;
require_once dirname(__DIR__) . '/vendor/autoload_runtime.php';
return static fn(array $context): Kernel => new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);