<?phpuse App\Kernel;require_once dirname(__DIR__).'/vendor/autoload_runtime.php';return function (array $context) { if($context['APP_MAINTEINER']){ echo file_get_contents(dirname(__DIR__)."/templates/on_maintenance.html"); die(); } return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);};