Completed
Push — master ( e35e6f...5d201a )
by Fabien
53:19
created
Classes/Module/ModuleLoader.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -177,7 +177,7 @@  discard block
 block discarded – undo
177 177
      */
178 178
     protected function getExistingMainConfiguration(): array
179 179
     {
180
-        $moduleSignature = $this->computeMainModule() . '_' . $this->getInternalModuleSignature();
180
+        $moduleSignature = $this->computeMainModule().'_'.$this->getInternalModuleSignature();
181 181
         return $GLOBALS['TBE_MODULES']['_configuration'][$moduleSignature] ?? [];
182 182
     }
183 183
 
@@ -299,7 +299,7 @@  discard block
 block discarded – undo
299 299
             ExtensionUtility::registerModule(
300 300
                 'Fab.vidi',
301 301
                 $this->computeMainModule(),
302
-                $this->dataType . '_' . $this->moduleKey,
302
+                $this->dataType.'_'.$this->moduleKey,
303 303
                 $this->position,
304 304
                 [
305 305
                     \Fab\Vidi\Controller\ContentController::class => 'index, list, delete, update, edit, copy, move, localize, sort, copyClipboard, moveClipboard',
@@ -362,7 +362,7 @@  discard block
 block discarded – undo
362 362
      */
363 363
     public function getParameterPrefix(): string
364 364
     {
365
-        return 'tx_vidi_' . strtolower($this->getSignature());
365
+        return 'tx_vidi_'.strtolower($this->getSignature());
366 366
     }
367 367
 
368 368
     /**
@@ -1015,10 +1015,10 @@  discard block
 block discarded – undo
1015 1015
         if ($dataType === null) {
1016 1016
             $dataType = $this->dataType;
1017 1017
         }
1018
-        $subModuleName = $dataType . '_' . $this->moduleKey;
1018
+        $subModuleName = $dataType.'_'.$this->moduleKey;
1019 1019
 
1020 1020
         $mainModule = $this->mainModule ?: self::DEFAULT_MAIN_MODULE;
1021
-        return $mainModule . '_Vidi' . GeneralUtility::underscoredToUpperCamelCase($subModuleName);
1021
+        return $mainModule.'_Vidi'.GeneralUtility::underscoredToUpperCamelCase($subModuleName);
1022 1022
     }
1023 1023
 
1024 1024
 }
Please login to merge, or discard this patch.