futtern/public/index.php

8 lines
224 B
PHP
Raw Normal View History

2024-02-05 15:16:43 +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']);