0
0
Fork 0
mirror of https://github.com/kevinpapst/kimai2.git synced 2025-03-16 05:53:29 +00:00
kevinpapst_kimai2/public/index.php

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