murph-skeleton/public/index.php

10 lines
199 B
PHP
Raw Permalink Normal View History

2021-03-24 12:27:07 +01:00
<?php
use App\Kernel;
require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
2021-03-24 12:27:07 +01:00
return function (array $context) {
return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
};