<?phpuse App\Kernel;$_SERVER['APP_RUNTIME_OPTIONS']['dotenv_path'] = 'app/.env';if (!defined('PATH_DOCROOT')) { define('PATH_DOCROOT', dirname(__FILE__,3).'/');}require_once dirname(__DIR__, 2).'/vendor/autoload_runtime.php';return function (array $context) { return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);};