1 | <?php |
||
20 | class Application extends SymfonyApplication |
||
21 | { |
||
22 | /** |
||
23 | * Logo Text |
||
24 | * |
||
25 | * @var string |
||
26 | */ |
||
27 | const LOGO = <<<EOT |
||
28 | ____ _ ___ |
||
29 | / ___|| |__ ___|_ _|_ __ |
||
30 | \___ \| '_ \ / _ \| || '_ \ |
||
31 | ___) | | | | __/| || | | | |
||
32 | |____/|_| |_|\___|___|_| |_| |
||
33 | |||
34 | EOT; |
||
35 | |||
36 | /** |
||
37 | * @var App |
||
38 | */ |
||
39 | protected $decorated; |
||
40 | |||
41 | public function __construct(App $app) |
||
46 | |||
47 | /** |
||
48 | * {@inheritdoc} |
||
49 | */ |
||
50 | public function getHelp() |
||
54 | |||
55 | /** |
||
56 | * {@inheritdoc} |
||
57 | */ |
||
58 | public function doRun(InputInterface $input, OutputInterface $output) |
||
66 | |||
67 | protected function registerCommands() |
||
75 | } |