Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
22 | public function listAction() |
||
23 | { |
||
24 | /** @var Account $account */ |
||
25 | $account = $this->accountRepository->findByIdentifier($this->settings['account']); |
||
26 | if ($account) { |
||
27 | $this->hubicService->setAccount($account); |
||
28 | $this->view->assign('links', $this->hubicService->getAllLinks()); |
||
29 | } |
||
30 | } |
||
31 | |||
48 |