| 1 | <?php |
||
| 21 | class Application extends \Symfony\Component\Console\Application |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * @var string |
||
| 25 | */ |
||
| 26 | private $logo = ' |
||
| 27 | ________ __ .__ |
||
| 28 | / _____/ ____ _____/ |_ ____ ____ | | ______ |
||
| 29 | / \ ____/ __ \/ _ \ __\/ _ \ / _ \| | / ___/ |
||
| 30 | \ \_\ \ ___( <_> ) | ( <_> | <_> ) |__\___ \ |
||
| 31 | \______ /\___ >____/|__| \____/ \____/|____/____ > |
||
| 32 | \/ \/ \/ |
||
| 33 | |||
| 34 | '; |
||
| 35 | |||
| 36 | /** |
||
| 37 | * {@inheritdoc} |
||
| 38 | */ |
||
| 39 | public function getHelp() |
||
| 43 | |||
| 44 | /** |
||
| 45 | * {@inheritdoc} |
||
| 46 | */ |
||
| 47 | public function run(InputInterface $input = null, OutputInterface $output = null) |
||
| 51 | } |
||
| 52 |