9 lines
157 B
PHP
9 lines
157 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
use App\Core\Application;
|
|
|
|
/** @var Application $app */
|
|
$app = require dirname(__DIR__) . '/bootstrap/app.php';
|
|
$app->run();
|