1
0
mirror of https://github.com/kevachat/webapp.git synced 2025-01-18 10:39:59 +00:00

10 lines
199 B
PHP
Raw Normal View History

2023-12-04 21:28:33 +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']);
};