All checks were successful
Apply PHP CS Fixer / php-cs-fixer (push) Successful in 1m33s
10 lines
215 B
PHP
Executable File
10 lines
215 B
PHP
Executable File
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Kernel;
|
|
|
|
require_once dirname(__DIR__) . '/vendor/autoload_runtime.php';
|
|
|
|
return static fn (array $context) => new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
|