2021-09-08 05:16:47 +09:00
|
|
|
<?php
|
|
|
|
|
2021-10-10 17:26:18 +09:00
|
|
|
declare(strict_types = 1);
|
|
|
|
|
2021-09-08 05:16:47 +09:00
|
|
|
require_once 'bootstrap.php';
|
|
|
|
|
|
|
|
use App\Kernel;
|
|
|
|
|
|
|
|
$kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
|
|
|
|
$kernel->boot();
|
2021-09-09 04:37:33 +09:00
|
|
|
return $kernel;
|