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