Completed
Push — master ( d18f16...a68a2b )
by Tim
11s
created
Classes/Loader/ContentObjects.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -182,7 +182,7 @@  discard block
 block discarded – undo
182 182
      */
183 183
     protected function getClassPropertiesInLowerCaseUnderscored($className)
184 184
     {
185
-        return array_map(function ($value) {
185
+        return array_map(function($value) {
186 186
             return GeneralUtility::camelCaseToLowerCaseUnderscored($value);
187 187
         }, ReflectionUtility::getDeclaringProperties($className));
188 188
     }
@@ -285,7 +285,7 @@  discard block
 block discarded – undo
285 285
             if (!isset($GLOBALS['TCA']['tt_content']['types'][$typeKey]['showitem'])) {
286 286
                 $baseTcaConfiguration = $this->wrapDefaultTcaConfiguration(
287 287
                     $config['fieldConfiguration'],
288
-                    (bool) $config['noHeader']
288
+                    (bool)$config['noHeader']
289 289
                 );
290 290
 
291 291
                 if (ExtensionManagementUtility::isLoaded('gridelements')) {
Please login to merge, or discard this patch.
Classes/Loader/ExtensionTypoScriptSetup.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -84,8 +84,8 @@
 block discarded – undo
84 84
         $setup = [];
85 85
         foreach ($this->getSmartObjectsForExtensionKey($extensionKey) as $className) {
86 86
             $table = ModelUtility::getTableNameByModelReflectionAnnotation($className);
87
-            $recordType = (string) ReflectionUtility::getFirstTagValue($className, 'recordType');
88
-            $parentClass = (string) ReflectionUtility::getFirstTagValue($className, 'parentClass');
87
+            $recordType = (string)ReflectionUtility::getFirstTagValue($className, 'recordType');
88
+            $parentClass = (string)ReflectionUtility::getFirstTagValue($className, 'parentClass');
89 89
             if ('' !== $table) {
90 90
                 $setup[] = 'config.tx_extbase.persistence.classes.' . $className . '.mapping.tableName = ' . $table;
91 91
             }
Please login to merge, or discard this patch.