hesabixCore/public_html/index.php
2023-12-30 06:45:30 +00:00

7 lines
257 B
PHP

<?php
use App\Kernel;
require_once dirname(__DIR__).'/hesabixCore/vendor/autoload_runtime.php';
header("Access-Control-Allow-Credentials: true");
return function (array $context) {
return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
};