<?phpuse App\Kernel;// Force UTF-8 encodingmb_internal_encoding('UTF-8');mb_http_output('UTF-8');mb_regex_encoding('UTF-8');require_once dirname(__DIR__) . '/vendor/autoload_runtime.php';return function (array $context) { return new Kernel($context['APP_ENV'], (bool)$context['APP_DEBUG']);};