@@ -10,7 +10,6 @@ |
||
10 | 10 | use HDNET\OnpageIntegration\Utility\TitleUtility; |
11 | 11 | use HDNET\OnpageIntegration\Provider\MetaDataProvider; |
12 | 12 | use HDNET\OnpageIntegration\Utility\ArrayUtility; |
13 | - |
|
14 | 13 | use TYPO3\CMS\Extbase\Object\ObjectManager; |
15 | 14 | use TYPO3\CMS\Core\Utility\GeneralUtility; |
16 | 15 | use TYPO3\CMS\Extbase\Mvc\Controller\ActionController; |
@@ -64,8 +64,8 @@ |
||
64 | 64 | /** @var \HDNET\OnpageIntegration\Domain\Model\Configuration $configuration */ |
65 | 65 | $configuration = $configurationRepository->findByUid(1); |
66 | 66 | |
67 | - $apiCallTable = 'zoom_' . $section . '_' . $call . '_table'; |
|
68 | - $apiCallGraph = 'zoom_' . $section . '_' . $call . '_graph'; |
|
67 | + $apiCallTable = 'zoom_'.$section.'_'.$call.'_table'; |
|
68 | + $apiCallGraph = 'zoom_'.$section.'_'.$call.'_graph'; |
|
69 | 69 | |
70 | 70 | $this->view->assignMultiple([ |
71 | 71 | 'moduleName' => TitleUtility::makeSubTitle($section), |
@@ -14,7 +14,7 @@ |
||
14 | 14 | |
15 | 15 | /** |
16 | 16 | * @param $metaDataArray |
17 | - * @param $section |
|
17 | + * @param string $section |
|
18 | 18 | */ |
19 | 19 | static public function buildIndexActionArray(&$metaDataArray, $section) |
20 | 20 | { |
@@ -19,8 +19,8 @@ |
||
19 | 19 | static public function buildIndexActionArray(&$metaDataArray, $section) |
20 | 20 | { |
21 | 21 | $loader = GeneralUtility::makeInstance(\HDNET\OnpageIntegration\Loader\ApiResultLoader::class); |
22 | - for ($i = 0; $i < count($metaDataArray[0]); $i++) { |
|
23 | - $metaDataArray[0][$i]['errors'] = $loader->load('zoom_' . $section . '_' . $i . '_graph'); |
|
22 | + for ($i = 0; $i<count($metaDataArray[0]); $i++) { |
|
23 | + $metaDataArray[0][$i]['errors'] = $loader->load('zoom_'.$section.'_'.$i.'_graph'); |
|
24 | 24 | } |
25 | 25 | } |
26 | 26 | } |
@@ -13,7 +13,7 @@ |
||
13 | 13 | { |
14 | 14 | |
15 | 15 | /** |
16 | - * @param $section |
|
16 | + * @param string $section |
|
17 | 17 | * |
18 | 18 | * @return string |
19 | 19 | */ |
@@ -6,8 +6,6 @@ |
||
6 | 6 | |
7 | 7 | namespace HDNET\OnpageIntegration\ViewHelpers; |
8 | 8 | |
9 | -use TYPO3\CMS\Extbase\Utility\DebuggerUtility; |
|
10 | - |
|
11 | 9 | /** |
12 | 10 | * Class InArrayViewHelper |
13 | 11 | */ |
@@ -25,7 +25,7 @@ |
||
25 | 25 | { |
26 | 26 | $titleArray = explode('_', $title); |
27 | 27 | |
28 | - $UpperTitle = array_map(function ($value) { |
|
28 | + $UpperTitle = array_map(function($value) { |
|
29 | 29 | return ucfirst($value); |
30 | 30 | }, $titleArray); |
31 | 31 |