-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathalone-app
35 lines (27 loc) · 805 Bytes
/
alone-app
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
32
33
34
35
#!/usr/env/php
<?php
/**
* only run a controller.
*/
use Inhere\Console\Application;
use Inhere\Console\Examples\Controller\HomeController;
use Inhere\Console\IO\Input;
use Toolkit\Cli\Color;
define('BASE_PATH', dirname(__DIR__));
require dirname(__DIR__) . '/test/bootstrap.php';
try {
$input = new Input();
$app = new Application([
'debug' => true,
'rootPath' => BASE_PATH,
], $input);
$app->controller('home', HomeController::class);
$subCmd = $input->getCommand();
$app->dispatch('home:' . $subCmd, []);
} catch (Throwable $e) {
$message = Color::apply('error', $e->getMessage());
echo sprintf("%s\nFile %s:%d\nTrace:\n%s\n",
$message, $e->getFile(), $e->getLine(), $e->getTraceAsString()
);
}
// can also: see './alone' file