12 lines
262 B
PHP
12 lines
262 B
PHP
<?php
|
|
|
|
require_once __DIR__."/../vendor/autoload.php";
|
|
require_once __DIR__."/systemtest.php";
|
|
if (file_exists(__DIR__."/banner.php"))
|
|
require_once __DIR__."/banner.php";
|
|
|
|
use NoccyLabs\Hotfix\HotfixApplication;
|
|
|
|
$app = new HotfixApplication();
|
|
$app->run();
|