Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
19 | protected function execute(InputInterface $input, OutputInterface $output) |
||
20 | { |
||
21 | $queueName = new QueueName($input->getArgument('queue'), $this->getContainer()->getParameter('sqs_job_queue.prefix')); |
||
22 | $worker = $this->getContainer()->get('sqs_job_queue.worker'); |
||
23 | $worker->run($queueName); |
||
24 | } |
||
25 | } |