2024-02-05 15:16:43 +00:00
|
|
|
<?php declare(strict_types=1);
|
|
|
|
|
|
|
|
use App\Kernel;
|
|
|
|
|
|
|
|
require_once dirname(__DIR__) . '/vendor/autoload_runtime.php';
|
2024-06-09 14:43:34 +00:00
|
|
|
|
|
|
|
return static fn(array $context): Kernel => new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
|