| 1 | <?php |
||
| 27 | abstract class AbstractCommand extends Command { |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Create a style. |
||
| 31 | * |
||
| 32 | * @param InputInterface $input The input. |
||
| 33 | * @param OutputInterface $output The ouptut. |
||
| 34 | * @return StyleInterface Returns the style. |
||
| 35 | */ |
||
| 36 | protected function newStyle(InputInterface $input, OutputInterface $output) { |
||
| 39 | |||
| 40 | } |
||
| 41 |