fediplan/public/index.php

10 lines
199 B
PHP
Raw Normal View History

2019-08-08 17:29:59 +02:00
<?php
use App\Kernel;
2024-05-14 15:06:46 +00:00
require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
2019-08-08 17:29:59 +02:00
2024-05-14 15:06:46 +00:00
return function (array $context) {
return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
};