Completed
Push — master ( 9b09f7...e88210 )
by Tim
12:07
created
Classes/DataSet.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
      * Get the TCA information of the given data sets.
59 59
      *
60 60
      * @param $implementations
61
-     * @param $table
61
+     * @param string $table
62 62
      *
63 63
      * @return array
64 64
      */
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
      * Get the SQL information of the given data sets.
80 80
      *
81 81
      * @param array $implementations
82
-     * @param       $table
82
+     * @param       string $table
83 83
      *
84 84
      * @return array
85 85
      */
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
      * Get the SQL Key information of the given data sets.
100 100
      *
101 101
      * @param $implementations
102
-     * @param $table
102
+     * @param string $table
103 103
      *
104 104
      * @return array
105 105
      */
Please login to merge, or discard this patch.
Classes/Loader/ContentObjects.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
     /**
113 113
      * Check if the class is tagged with noHeader.
114 114
      *
115
-     * @param $class
115
+     * @param string $class
116 116
      *
117 117
      * @return bool
118 118
      */
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
     /**
177 177
      * Same as getClassProperties, but the fields are in LowerCaseUnderscored.
178 178
      *
179
-     * @param $className
179
+     * @param string $className
180 180
      *
181 181
      * @return array
182 182
      */
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -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')) {
@@ -361,7 +361,7 @@  discard block
 block discarded – undo
361 361
         $nameMapperService = GeneralUtility::makeInstance(NameMapperService::class);
362 362
         $tableName = ModelUtility::getTableName($className);
363 363
 
364
-        return \array_map(function ($value) use ($nameMapperService, $tableName) {
364
+        return \array_map(function($value) use ($nameMapperService, $tableName) {
365 365
             return $nameMapperService->getDatabaseFieldName($tableName, $value);
366 366
         }, ReflectionUtility::getDeclaringProperties($className));
367 367
     }
Please login to merge, or discard this patch.
Classes/Utility/JsonServer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
         list($namespace, $method) = self::getNamespaceAndMethod($namespace, $methodRaw);
54 54
         $singleJsonRequest['method'] = $method;
55 55
 
56
-        $server = new JsonServerService($namespace, (bool) GeneralUtility::_GP('smd'));
56
+        $server = new JsonServerService($namespace, (bool)GeneralUtility::_GP('smd'));
57 57
 
58 58
         $request = new Request();
59 59
         $request->setOptions($singleJsonRequest);
Please login to merge, or discard this patch.
Classes/SmartObjectManager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
             $return = false;
58 58
         } else {
59 59
             $classReflection = ReflectionUtility::createReflectionClass($className);
60
-            $return = !(bool) (!$classReflection->isInstantiable() || !$classReflection->isTaggedWith('db'));
60
+            $return = !(bool)(!$classReflection->isInstantiable() || !$classReflection->isTaggedWith('db'));
61 61
         }
62 62
 
63 63
         // if ($registerAutoLoader) {
Please login to merge, or discard this patch.
Classes/Service/JsonServer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
             $this->serverClass = $GLOBALS['TYPO3_CONF_VARS']['AUTOLOADER']['Json'][$server];
52 52
         }
53 53
 
54
-        $this->renderSmd = (bool) $smd;
54
+        $this->renderSmd = (bool)$smd;
55 55
     }
56 56
 
57 57
     /**
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.
Classes/Utility/ExtendedUtility.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
     /**
37 37
      * Get the query for the given class name oder object.
38 38
      *
39
-     * @param string|object $objectName
39
+     * @param string $objectName
40 40
      *
41 41
      * @return \TYPO3\CMS\Extbase\Persistence\QueryInterface
42 42
      */
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
     /**
80 80
      * Log into the TYPO3_CONF_VARS to get more information in the backend.
81 81
      *
82
-     * @param $message
82
+     * @param string $message
83 83
      */
84 84
     public static function log($message)
85 85
     {
Please login to merge, or discard this patch.
Classes/Loader/Hooks.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
                 /** @var $methodReflection \TYPO3\CMS\Extbase\Reflection\MethodReflection */
64 64
                 $tagConfiguration = ReflectionUtility::getTagConfiguration($methodReflection, ['hook']);
65 65
                 if (\count($tagConfiguration['hook']) > 0) {
66
-                    $hookLocations = \array_map(function ($hook) {
66
+                    $hookLocations = \array_map(function($hook) {
67 67
                         return \trim($hook, " \t\n\r\0\x0B|");
68 68
                     }, $tagConfiguration['hook']);
69 69
 
Please login to merge, or discard this patch.
Classes/Utility/ReflectionUtility.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@
 block discarded – undo
108 108
         }
109 109
         $values = $classReflection->getTagValues($tag);
110 110
         if (\is_array($values)) {
111
-            return \trim((string) $values[0]);
111
+            return \trim((string)$values[0]);
112 112
         }
113 113
 
114 114
         return false;
Please login to merge, or discard this patch.