@@ -174,8 +174,8 @@ |
||
| 174 | 174 | $configuration = $backendConfigurationManager->getTypoScriptSetup(); |
| 175 | 175 | $querySettings = array('respectSysLanguage'); |
| 176 | 176 | foreach ($querySettings as $setting) { |
| 177 | - if (isset($configuration['config.']['tx_vidi.']['persistence.']['backend.'][$this->type . '.'][$setting])) { |
|
| 178 | - $value = (bool)$configuration['config.']['tx_vidi.']['persistence.']['backend.'][$this->type . '.'][$setting]; |
|
| 177 | + if (isset($configuration['config.']['tx_vidi.']['persistence.']['backend.'][$this->type.'.'][$setting])) { |
|
| 178 | + $value = (bool)$configuration['config.']['tx_vidi.']['persistence.']['backend.'][$this->type.'.'][$setting]; |
|
| 179 | 179 | ObjectAccess::setProperty($this->typo3QuerySettings, $setting, $value); |
| 180 | 180 | } |
| 181 | 181 | } |
@@ -55,7 +55,7 @@ |
||
| 55 | 55 | |
| 56 | 56 | $part = $arguments['part']; |
| 57 | 57 | |
| 58 | - $getComponents = 'get' . ucfirst($part) . 'Components'; |
|
| 58 | + $getComponents = 'get'.ucfirst($part).'Components'; |
|
| 59 | 59 | $components = $moduleLoader->$getComponents(); |
| 60 | 60 | |
| 61 | 61 | $result = ''; |
@@ -17,7 +17,7 @@ discard block |
||
| 17 | 17 | |
| 18 | 18 | defined('TYPO3') or die(); |
| 19 | 19 | |
| 20 | -call_user_func(function () { |
|
| 20 | +call_user_func(function() { |
|
| 21 | 21 | |
| 22 | 22 | // Check from Vidi configuration what default module should be loaded. |
| 23 | 23 | // Make sure the class exists to avoid a Runtime Error |
@@ -176,7 +176,7 @@ discard block |
||
| 176 | 176 | /** @var IconRegistry $iconRegistry */ |
| 177 | 177 | $iconRegistry = GeneralUtility::makeInstance(IconRegistry::class); |
| 178 | 178 | foreach ($icons as $key => $icon) { |
| 179 | - $iconRegistry->registerIcon('extensions-vidi-' . $key, |
|
| 179 | + $iconRegistry->registerIcon('extensions-vidi-'.$key, |
|
| 180 | 180 | BitmapIconProvider::class, |
| 181 | 181 | [ |
| 182 | 182 | 'source' => $icon |