Website/public/index.php
Snoweuph 8a60432d43
Some checks failed
Quality Check / QS Frontend (push) Failing after 10s
Quality Check / QS Backend (push) Failing after 9s
NOTICKET: Refactor Project Layout
2024-07-30 05:40:10 +02:00

9 lines
209 B
PHP

<?php
use App\Framework\Kernel;
require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
return function (array $context) {
return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
};