| 1 | <?php |
||
| 7 | class Application extends \Symfony\Component\Console\Application |
||
| 8 | { |
||
| 9 | public const LOGO = <<<TXT |
||
| 10 | ____ _ |
||
| 11 | / ___|| |_ ___ _ __ ___ _ __ ___ __ _ _ __ |
||
| 12 | \___ \| __/ _ \| '__/ _ \ '_ ` _ \ / _` | '_ \ |
||
| 13 | ___) | || (_) | | | __/ | | | | | (_| | | | | |
||
| 14 | |____/ \__\___/|_| \___|_| |_| |_|\__,_|_| |_| |
||
| 15 | |||
| 16 | |||
| 17 | TXT; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * {@inheritdoc} |
||
| 21 | */ |
||
| 22 | public function getHelp() |
||
| 26 | |||
| 27 | /** |
||
| 28 | * {@inheritdoc} |
||
| 29 | */ |
||
| 30 | protected function getDefaultHelperSet() |
||
| 37 | } |
||
| 38 |