hesabix/public_html/index.php

10 lines
201 B
PHP
Raw Normal View History

2025-08-31 15:07:34 +03:30
<?php
use App\Kernel;
require_once dirname(__DIR__,2).'/vendor/autoload_runtime.php';
return function (array $context) {
return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
};