Part-DB.Part-DB-server/public/index.php

10 lines
199 B
PHP
Raw Normal View History

2019-02-23 16:49:38 +01:00
<?php
use App\Kernel;
2021-10-02 20:56:49 +02:00
require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
2021-10-02 20:56:49 +02:00
return function (array $context) {
return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
};