1
0
Fork 0
get-installer-bootstrap/public/index.php

10 lines
206 B
PHP
Raw Normal View History

2026-05-05 07:30:51 +00:00
<?php
use App\Kernel;
require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
return static function (array $context) {
return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
};