4
0
mirror of https://github.com/AzuraCast/AzuraCast.git synced 2024-06-14 05:06:37 +00:00
AzuraCast/web/index.php
Buster "Silver Eagle" Neece a9f066602c
Code quality cleanup sweep.
2022-05-08 13:05:02 -05:00

17 lines
284 B
PHP
Executable File

<?php
declare(strict_types=1);
error_reporting(E_ALL & ~E_NOTICE & ~E_STRICT);
ini_set('display_errors', '1');
require dirname(__DIR__) . '/vendor/autoload.php';
$app = App\AppFactory::createApp(
[
App\Environment::BASE_DIR => dirname(__DIR__),
]
);
$app->run();