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