@@ -182,7 +182,7 @@ discard block |
||
| 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 |
||
| 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')) { |
@@ -84,8 +84,8 @@ |
||
| 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 | } |