| 1 | <?php |
||
| 8 | abstract class AbstractTask |
||
| 9 | { |
||
| 10 | /** @var \Symfony\Component\Console\Input\InputInterface $input */ |
||
| 11 | protected $input; |
||
| 12 | |||
| 13 | /** @var \Symfony\Component\Console\Output\OutputInterface $output */ |
||
| 14 | protected $output; |
||
| 15 | |||
| 16 | 1 | public function __construct(InputInterface $input, OutputInterface $output) |
|
| 21 | |||
| 22 | /** |
||
| 23 | * Perform the task |
||
| 24 | */ |
||
| 25 | abstract public function run(); |
||
| 26 | } |
||
| 27 |