Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
25 | protected function execute(InputInterface $input, OutputInterface $output) |
||
26 | { |
||
27 | $runner = $this->getContainer()->get('glooby_task.queue_processor'); |
||
28 | $runner->setOutput($output); |
||
29 | $runner->process(); |
||
30 | |||
31 | $scheduler = $this->getContainer()->get('glooby_task.queue_scheduler'); |
||
32 | $scheduler->schedule(); |
||
33 | } |
||
34 | } |
||
35 |