Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1.0156 |
Changes | 0 |
1 | <?php |
||
33 | 32 | public function indexAction() |
|
34 | { |
||
35 | 32 | $typoScriptConfiguration = $this->controllerContext->getTypoScriptConfiguration(); |
|
36 | 32 | $lastSearchesService = GeneralUtility::makeInstance( |
|
37 | 32 | LastSearchesService::class, |
|
38 | 32 | /** @scrutinizer ignore-type */ $typoScriptConfiguration |
|
39 | ); |
||
40 | 32 | $this->view->assign('contentArguments', ['lastSearches' => $lastSearchesService->getLastSearches()]); |
|
41 | 32 | } |
|
43 |