<?phpuse App\Kernel;if (\PHP_VERSION_ID >= 80300) { set_error_handler(static function (int $type, string $message): bool { if ((\E_DEPRECATED & $type) && str_contains($message, 'assert.') && str_contains($message, 'INI setting is deprecated')) { return true; } return false; });}require_once dirname(__DIR__).'/vendor/autoload_runtime.php';return function (array $context) { return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);};