1
0
mirror of https://github.com/kevachat/webapp.git synced 2025-01-14 08:48:17 +00:00
webapp/public/index.php

10 lines
199 B
PHP
Raw Normal View History

2023-12-04 19:28:33 +00:00
<?php
use App\Kernel;
require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
return function (array $context) {
return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
};