| 1 | <?php |
||
| 10 | abstract class BaseCommand extends Command |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @param \Symfony\Component\Console\Input\InputInterface $input |
||
| 14 | * @param \Symfony\Component\Console\Output\OutputInterface $output |
||
| 15 | * |
||
| 16 | * @return int |
||
| 17 | */ |
||
| 18 | public function run(InputInterface $input, OutputInterface $output) |
||
| 24 | } |
||
| 25 |