Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
23 | public function listAction() |
||
24 | { |
||
25 | $this->settings['timeFormat'] = 'H:i'; |
||
26 | $this->settings['dateFormat'] = 'd.m.Y'; |
||
27 | |||
28 | $this->view->assignMultiple([ |
||
29 | 'indices' => $this->indexRepository->findAllForBackend(), |
||
30 | 'typeLocations' => $this->getDifferentTypesAndLocations(), |
||
31 | 'settings' => $this->settings, |
||
32 | 'options' => $this->getOptions() |
||
33 | ]); |
||
34 | } |
||
35 | |||
75 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.