Website/bin/console
Snoweuph 8a60432d43
Some checks failed
Quality Check / QS Frontend (push) Failing after 10s
Quality Check / QS Backend (push) Failing after 9s
NOTICKET: Refactor Project Layout
2024-07-30 05:40:10 +02:00

17 lines
502 B
PHP
Executable file

#!/usr/bin/env php
<?php
use App\Framework\Kernel;
use Symfony\Bundle\FrameworkBundle\Console\Application;
if (!is_file(dirname(__DIR__).'/vendor/autoload_runtime.php')) {
throw new LogicException('Symfony Runtime is missing. Try running "composer require symfony/runtime".');
}
require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
return function (array $context) {
$kernel = new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
return new Application($kernel);
};