1 | <?php |
||
25 | class Application extends ConsoleApplication |
||
26 | { |
||
27 | |||
28 | /** |
||
29 | * Logo |
||
30 | * font: slant |
||
31 | */ |
||
32 | const Logo = <<<LOGO |
||
|
|||
33 | _____ |
||
34 | /__ / ____ _____ ___ ____ ___ |
||
35 | / / / __ `/ __ `__ \/ __ `__ \ |
||
36 | / /__/ /_/ / / / / / / / / / / / |
||
37 | /____/\__,_/_/ /_/ /_/_/ /_/ /_/ |
||
38 | |||
39 | |||
40 | LOGO; |
||
41 | |||
42 | public function __construct() |
||
46 | |||
47 | public function getHelp() |
||
51 | |||
52 | /** |
||
53 | * Gets the default commands that should always be available. |
||
54 | * |
||
55 | * @return Command[] An array of default Command instances |
||
56 | */ |
||
57 | public function getDefaultCommands() |
||
65 | |||
66 | } |
||
67 |