thebadspace/public/index.php
Ro 69af37fc16 Initial Symfony Set up
Just getting the base framework installed and running so the goodness
can begin
2022-11-14 15:28:16 -08:00

10 lines
199 B
PHP

<?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']);
};