1 | <?php |
||
9 | class Application extends BaseApplication |
||
10 | { |
||
11 | /** |
||
12 | * @var string |
||
13 | */ |
||
14 | private static $logo = " ___ ___ _ |
||
15 | / _ \/ __\_____ _| |_ _ __ ___ _ __ ___ ___ |
||
16 | / /_)/ / / _ \ \/ / __| '__/ _ \ '_ ` _ \ / _ \ |
||
17 | / ___/ /__| __/> <| |_| | | __/ | | | | | __/ |
||
18 | \/ \____/\___/_/\_\\\__|_| \___|_| |_| |_|\___| |
||
19 | |||
20 | "; |
||
21 | |||
22 | /** |
||
23 | * Create a new instance of the application. |
||
24 | */ |
||
25 | public function __construct() |
||
29 | |||
30 | /** |
||
31 | * Gets the help message. |
||
32 | * |
||
33 | * @return string A help message |
||
34 | */ |
||
35 | public function getHelp() : string |
||
39 | |||
40 | /** |
||
41 | * Gets the default commands that should always be available. |
||
42 | * |
||
43 | * @return array |
||
44 | */ |
||
45 | protected function getDefaultCommands() : array |
||
53 | } |
||
54 |