-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathqt
More file actions
28 lines (22 loc) · 761 Bytes
/
qt
File metadata and controls
28 lines (22 loc) · 761 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php
/*
* ---------------------------------------------------------
* Register the auto loader
* ---------------------------------------------------------
*/
require __DIR__ . '/vendor/autoload.php';
use Quantum\App\Factories\AppFactory;
use Quantum\App\Enums\AppType;
/*
* -----------------------------------------------------------------------------
* Directory separator
* -----------------------------------------------------------------------------
*/
if (!defined('DS')) define('DS', DIRECTORY_SEPARATOR);
/*
* ---------------------------------------------------------
* Run the console application
* ---------------------------------------------------------
*/
$status = AppFactory::create(AppType::CONSOLE, __DIR__)->start();
exit($status);