Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
34 | public function indexAction(Request $request, ?string $group = null) |
||
35 | { |
||
36 | $groups = $this->runnerManager->findGroups(); |
||
37 | $checks = $this->runnerManager->findChecks($group); |
||
38 | |||
39 | return $this->render('@TviMonitor/ui/index.html.twig', [ |
||
40 | 'groups' => $groups, |
||
41 | 'checks' => $checks, |
||
42 | ] |
||
46 |