hesabixCore/public_html/index.php

6 lines
207 B
PHP
Raw Normal View History

2023-01-17 10:33:36 +03:30
<?php
use App\Kernel;
2023-09-21 23:04:08 +03:30
require_once dirname(__DIR__).'/hesabixCore/vendor/autoload_runtime.php';
2023-01-17 10:33:36 +03:30
return function (array $context) {
return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
};