chill-skeleton-basic/public/index.php

10 lines
199 B
PHP
Raw Normal View History

2022-07-11 17:27:00 +00:00
<?php
use App\Kernel;
2023-09-05 13:22:31 +00:00
require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
2022-07-11 17:27:00 +00:00
2023-09-05 13:22:31 +00:00
return function (array $context) {
return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
};