EthikTag/public/index.php

10 lines
200 B
PHP
Raw Normal View History

2022-10-15 10:47:14 +02:00
<?php
use App\Kernel;
require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
return function (array $context) {
return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
};
2023-01-07 22:07:15 +01:00