1 | <?php |
||
15 | class ShowCommand extends Command |
||
16 | { |
||
17 | const COMMAND_NAME = 'show'; |
||
18 | |||
19 | /** |
||
20 | * Configure command. |
||
21 | */ |
||
22 | 5 | protected function configure() |
|
34 | |||
35 | /** |
||
36 | * @param InputInterface $input |
||
37 | * @param OutputInterface $output |
||
38 | * |
||
39 | * @throws \RuntimeException |
||
40 | * |
||
41 | * @return int|null|void |
||
42 | */ |
||
43 | 3 | protected function execute(InputInterface $input, OutputInterface $output) |
|
56 | } |
||
57 |