Completed
Push — master ( 0a63e5...44f21d )
by Tim
02:15
created
Classes/Service/SmartObjectInformationService.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@  discard block
 block discarded – undo
3 3
 /**
4 4
  * SmartObjectInformationService.php.
5 5
  */
6
-declare(strict_types=1);
6
+declare(strict_types = 1);
7 7
 
8 8
 namespace HDNET\Autoloader\Service;
9 9
 
@@ -343,7 +343,7 @@  discard block
 block discarded – undo
343 343
         $classReflection = ReflectionUtility::createReflectionClass($modelClassName);
344 344
         if ($classReflection->isTaggedWith('key')) {
345 345
             $additionalKeys = $classReflection->getTagValues('key');
346
-            \array_walk($additionalKeys, function (&$item) {
346
+            \array_walk($additionalKeys, function(&$item) {
347 347
                 $item = 'KEY ' . $item;
348 348
             });
349 349
             $fields = \array_merge($fields, $additionalKeys);
Please login to merge, or discard this patch.
Classes/Loader/ContentObjects.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@  discard block
 block discarded – undo
3 3
 /**
4 4
  * Loading Slots.
5 5
  */
6
-declare(strict_types=1);
6
+declare(strict_types = 1);
7 7
 
8 8
 namespace HDNET\Autoloader\Loader;
9 9
 
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
             if (!isset($GLOBALS['TCA']['tt_content']['types'][$typeKey]['showitem'])) {
161 161
                 $baseTcaConfiguration = $this->wrapDefaultTcaConfiguration(
162 162
                     $config['fieldConfiguration'],
163
-                    (bool) $config['noHeader']
163
+                    (bool)$config['noHeader']
164 164
                 );
165 165
 
166 166
                 if (ExtensionManagementUtility::isLoaded('gridelements')) {
@@ -360,7 +360,7 @@  discard block
 block discarded – undo
360 360
     {
361 361
         $nameMapperService = GeneralUtility::makeInstance(NameMapperService::class);
362 362
         $tableName = ModelUtility::getTableName($className);
363
-        return \array_map(function ($value) use ($nameMapperService, $tableName) {
363
+        return \array_map(function($value) use ($nameMapperService, $tableName) {
364 364
             return $nameMapperService->getDatabaseFieldName($tableName, $value);
365 365
         }, ReflectionUtility::getDeclaringProperties($className));
366 366
     }
Please login to merge, or discard this patch.