Conditions | 1 |
Paths | 1 |
Total Lines | 19 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
34 | public function actionIndex(): Response |
||
35 | { |
||
36 | $variables = []; |
||
37 | $this->baseVariables($variables); |
||
38 | |||
39 | $criteria = new HubCriteria(); |
||
40 | |||
41 | $variables['limits'] = call_user_func_array( |
||
42 | new DynamicModelResponse(), |
||
43 | [ |
||
44 | $criteria->dailyLimit() |
||
45 | ] |
||
46 | ); |
||
47 | |||
48 | return $this->renderTemplate( |
||
49 | static::TEMPLATE_INDEX, |
||
50 | $variables |
||
51 | ); |
||
52 | } |
||
53 | |||
74 |