0
0
Fork 0
mirror of https://github.com/kevinpapst/kimai2.git synced 2025-01-10 11:37:35 +00:00
kevinpapst_kimai2/public/index.php
2024-11-21 22:44:49 +01:00

9 lines
199 B
PHP

<?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']);
};