| 1 | <?php |
||
| 15 | class RunCommand extends Command |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @var SchedulerInterface |
||
| 19 | */ |
||
| 20 | private $scheduler; |
||
| 21 | |||
| 22 | 2 | public function __construct(SchedulerInterface $scheduler) |
|
| 28 | |||
| 29 | /** |
||
| 30 | * {@inheritdoc} |
||
| 31 | */ |
||
| 32 | 2 | protected function configure() |
|
| 36 | |||
| 37 | /** |
||
| 38 | * {@inheritdoc} |
||
| 39 | */ |
||
| 40 | 1 | protected function execute(InputInterface $input, OutputInterface $output) |
|
| 44 | } |
||
| 45 |