Completed
Push — master ( 93dd0d...2e24e7 )
by Tim
02:24
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 1 patch
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.
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/Utility/TranslateUtility.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@
 block discarded – undo
78 78
      * Get the correct LLL string for the given key and extension.
79 79
      *
80 80
      * @param string $key
81
-     * @param        $extensionKey
81
+     * @param        string $extensionKey
82 82
      * @param string $file
83 83
      * @param string $tableName
84 84
      *
Please login to merge, or discard this patch.
Classes/Utility/ReflectionUtility.php 1 patch
Doc Comments   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
      * @param string $className
133 133
      * @param string $tag
134 134
      *
135
-     * @return string|bool
135
+     * @return false|string
136 136
      */
137 137
     public static function getFirstTagValue(string $className, string $tag)
138 138
     {
@@ -187,7 +187,7 @@  discard block
 block discarded – undo
187 187
      * Get the tag configuration from this method and respect multiple line and space configuration.
188 188
      *
189 189
      * @param string $className
190
-     * @param array                            $tagNames
190
+     * @param string[]                            $tagNames
191 191
      *
192 192
      * @return array
193 193
      */
@@ -217,8 +217,8 @@  discard block
 block discarded – undo
217 217
     /**
218 218
      * Get the tag configuration from this method and respect multiple line and space configuration.
219 219
      *
220
-     * @param MethodReflection|ClassReflection $reflectionObject
221
-     * @param array                            $tagNames
220
+     * @param string[]                            $tagNames
221
+     * @param string $className
222 222
      *
223 223
      * @return array
224 224
      */
@@ -246,8 +246,8 @@  discard block
 block discarded – undo
246 246
     /**
247 247
      * Get the tag configuration from this method and respect multiple line and space configuration.
248 248
      *
249
-     * @param MethodReflection|ClassReflection $reflectionObject
250
-     * @param array                            $tagNames
249
+     * @param string[]                            $tagNames
250
+     * @param string $className
251 251
      *
252 252
      * @return array
253 253
      */
Please login to merge, or discard this patch.