Kumora/public/index.php
Melaine Gérard 4cab96f9b6
All checks were successful
Apply PHP CS Fixer / php-cs-fixer (push) Successful in 1m33s
💄 Ajout PHP CS Fixer
2025-01-16 21:32:27 +01:00

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']);