<?php
use App\Kernel;
require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
return function (array $context): Kernel {
date_default_timezone_set("Europe/Madrid");
setlocale(LC_ALL, 'spanish');
ini_set('max_execution_time', 60);
return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
};