UnderCurrent/public/index.php
Tim a55d1c3c2e Properly implement the router with config and interfaces
Expand the container with aliases and argument autowiring
2023-08-07 17:51:53 +02:00

15 lines
336 B
PHP

<?php
ini_set('error_prepend_string', '<pre style="white-space: pre-wrap;">');
ini_set('error_append_string', '</pre>');
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);
use App\Kernel;
require_once dirname(__DIR__).'/vendor/autoload.php';
$kernel = new Kernel();
$kernel();