| 1 | <?php |
||
| 12 | class Application extends ConsoleApplication |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @var ConsoleOutput |
||
| 16 | */ |
||
| 17 | private $output; |
||
| 18 | /** |
||
| 19 | * @var ConsoleLogger |
||
| 20 | */ |
||
| 21 | private $logger; |
||
| 22 | /** |
||
| 23 | * @var Config |
||
| 24 | */ |
||
| 25 | private $config; |
||
| 26 | |||
| 27 | public function __construct() |
||
| 47 | |||
| 48 | /** |
||
| 49 | * {@inheritdoc} |
||
| 50 | * |
||
| 51 | * @throws \RuntimeException |
||
| 52 | */ |
||
| 53 | public function run(InputInterface $input = null, OutputInterface $output = null) |
||
| 61 | } |
||
| 62 |