forked from eguvenc/framework_old
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcli.php
More file actions
executable file
·31 lines (29 loc) · 936 Bytes
/
Copy pathcli.php
File metadata and controls
executable file
·31 lines (29 loc) · 936 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
29
30
31
<?php
/*
|--------------------------------------------------------------------------
| Php startup error handler
|--------------------------------------------------------------------------
*/
if (error_get_last() != null) {
include TEMPLATES .'errors'. DS .'startup.php';
}
/*
|--------------------------------------------------------------------------
| Obullo Cli Requests
|--------------------------------------------------------------------------
*/
require OBULLO_CLI;
/*
|--------------------------------------------------------------------------
| Autoloader
|--------------------------------------------------------------------------
*/
Obullo\Application\Cli::registerAutoloader();
/*
|--------------------------------------------------------------------------
| Initialize
|--------------------------------------------------------------------------
*/
$c['app']->run();
/* End of file cli.php */
/* Location: .cli.php */