| 1 | <?php |
||
| 16 | class ScheduleTaskCommand extends Command |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * @var SchedulerInterface |
||
| 20 | */ |
||
| 21 | private $scheduler; |
||
| 22 | |||
| 23 | 3 | public function __construct(SchedulerInterface $scheduler) |
|
| 29 | |||
| 30 | /** |
||
| 31 | * {@inheritdoc} |
||
| 32 | */ |
||
| 33 | 3 | protected function configure() |
|
| 40 | |||
| 41 | /** |
||
| 42 | * {@inheritdoc} |
||
| 43 | */ |
||
| 44 | 2 | protected function execute(InputInterface $input, OutputInterface $output) |
|
| 50 | } |
||
| 51 |