2024-12-28 00:39:57 +01:00
|
|
|
<?php
|
|
|
|
|
2025-01-16 21:31:32 +01:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2024-12-28 00:39:57 +01:00
|
|
|
use App\Kernel;
|
|
|
|
|
2025-01-16 21:31:32 +01:00
|
|
|
require_once dirname(__DIR__) . '/vendor/autoload_runtime.php';
|
2024-12-28 00:39:57 +01:00
|
|
|
|
2025-01-16 21:31:32 +01:00
|
|
|
return static fn (array $context) => new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
|