php-hotfix/bin/bootstrap.php
Christopher Vagnetoft b63260533f Improvements
2016-04-19 22:55:09 +02:00

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();