Completed
Push — master ( 892a3f...068784 )
by Fabien
50:28
created
Classes/Persistence/Query.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -174,8 +174,8 @@
 block discarded – undo
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
             }
Please login to merge, or discard this patch.
Classes/ViewHelpers/Render/ComponentsViewHelper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
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 = '';
Please login to merge, or discard this patch.
ext_tables.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
Please login to merge, or discard this patch.