2021-05-30 17:18:58 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use App\Kernel;
|
|
|
|
|
2022-04-11 17:56:59 +02:00
|
|
|
require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
|
2021-05-30 17:18:58 +02:00
|
|
|
|
2022-04-11 17:56:59 +02:00
|
|
|
return function (array $context) {
|
|
|
|
return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
|
|
|
|
};
|