7 lines
224 B
PHP
7 lines
224 B
PHP
<?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']);
|