Website/public/index.php
Snoweuph 5f7e43113e
Some checks failed
Quality Check / QS Backend (push) Successful in 15s
Quality Check / QS Frontend (push) Failing after 1m10s
NOTICKET: Refactor Project Layout
2024-07-30 05:43:44 +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']);
};