@@ -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 | } |
@@ -199,7 +199,7 @@ |
||
| 199 | 199 | $objects = []; |
| 200 | 200 | foreach ($objectNames as $autoLoaderObjectName) { |
| 201 | 201 | if (!isset($objectCache[$autoLoaderObjectName])) { |
| 202 | - if(class_exists('HDNET\\Autoloader\\Loader\\' . $autoLoaderObjectName)) { |
|
| 202 | + if (class_exists('HDNET\\Autoloader\\Loader\\' . $autoLoaderObjectName)) { |
|
| 203 | 203 | $objectCache[$autoLoaderObjectName] = GeneralUtility::makeInstance('HDNET\\Autoloader\\Loader\\' . $autoLoaderObjectName); |
| 204 | 204 | } else { |
| 205 | 205 | $objectCache[$autoLoaderObjectName] = GeneralUtility::makeInstance($autoLoaderObjectName); |