Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | public function indexAction() |
||
16 | { |
||
17 | /** @var DoctrineStorage $storage */ |
||
18 | $storage = $this->get('sqs_job_queue.storage.doctrine'); |
||
19 | |||
20 | /** @var array $workers */ |
||
21 | $workers = $storage->all(); |
||
22 | |||
23 | return $this->render('TaviiSQSJobQueueBundle:Default:index.html.twig', [ |
||
24 | 'workers' => $workers |
||
25 | ]); |
||
26 | } |
||
27 | } |