Test Failed
Branch master (e0e8ab)
by Tymoteusz
23:10
created
typo3/sysext/extbase/Classes/Persistence/Generic/Mapper/DataMapper.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -493,7 +493,7 @@  discard block
 block discarded – undo
493 493
      * @param DomainObjectInterface $parentObject
494 494
      * @param string $propertyName
495 495
      * @param mixed $fieldValue the raw field value
496
-     * @return mixed
496
+     * @return string
497 497
      * @see mapResultToPropertyValue()
498 498
      */
499 499
     protected function mapObjectToClassProperty(DomainObjectInterface $parentObject, $propertyName, $fieldValue)
@@ -537,7 +537,7 @@  discard block
 block discarded – undo
537 537
      * @param DomainObjectInterface $parentObject
538 538
      * @param string $propertyName
539 539
      * @param mixed $result The result
540
-     * @return mixed
540
+     * @return string
541 541
      */
542 542
     public function mapResultToPropertyValue(DomainObjectInterface $parentObject, $propertyName, $result)
543 543
     {
Please login to merge, or discard this patch.
typo3/sysext/extbase/Classes/Persistence/Generic/PersistenceManager.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -136,7 +136,7 @@
 block discarded – undo
136 136
      * to distinguish those cases.
137 137
      *
138 138
      * @param object $object
139
-     * @return mixed The identifier for the object if it is known, or NULL
139
+     * @return string|null The identifier for the object if it is known, or NULL
140 140
      * @api
141 141
      */
142 142
     public function getIdentifierByObject($object)
Please login to merge, or discard this patch.
typo3/sysext/extbase/Classes/Persistence/Generic/Qom/Join.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
     /**
79 79
      * Gets the join type.
80 80
      *
81
-     * @return string one of QueryObjectModelConstants.JCR_JOIN_TYPE_*
81
+     * @return integer one of QueryObjectModelConstants.JCR_JOIN_TYPE_*
82 82
      */
83 83
     public function getJoinType()
84 84
     {
Please login to merge, or discard this patch.
typo3/sysext/extbase/Classes/Persistence/Generic/QueryResult.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -264,7 +264,7 @@
 block discarded – undo
264 264
     }
265 265
 
266 266
     /**
267
-     * @return array
267
+     * @return string[]
268 268
      */
269 269
     public function __sleep()
270 270
     {
Please login to merge, or discard this patch.
typo3/sysext/extbase/Classes/Persistence/ObjectStorage.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -344,7 +344,7 @@
 block discarded – undo
344 344
     /**
345 345
      * Returns TRUE if an object is added, then removed and added at a different position
346 346
      *
347
-     * @param mixed $object
347
+     * @param \TYPO3\CMS\Extbase\DomainObject\DomainObjectInterface $object
348 348
      * @return bool
349 349
      */
350 350
     public function isRelationDirty($object)
Please login to merge, or discard this patch.
typo3/sysext/extbase/Classes/Reflection/ReflectionService.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -262,7 +262,7 @@
 block discarded – undo
262 262
     /**
263 263
      * Returns the class schema for the given class
264 264
      *
265
-     * @param mixed $classNameOrObject The class name or an object
265
+     * @param string $classNameOrObject The class name or an object
266 266
      * @return ClassSchema
267 267
      */
268 268
     public function getClassSchema($classNameOrObject)
Please login to merge, or discard this patch.
typo3/sysext/extbase/Classes/Scheduler/FieldProvider.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -166,7 +166,7 @@
 block discarded – undo
166 166
      * Also registers the default values of those fields with the Task, allowing
167 167
      * them to be read upon execution.
168 168
      *
169
-     * @param array $argumentDefinitions
169
+     * @param \TYPO3\CMS\Extbase\Mvc\Cli\CommandArgumentDefinition[] $argumentDefinitions
170 170
      * @return array
171 171
      */
172 172
     protected function getCommandControllerActionArgumentFields(array $argumentDefinitions)
Please login to merge, or discard this patch.
typo3/sysext/extensionmanager/Classes/Domain/Model/Extension.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -494,7 +494,7 @@
 block discarded – undo
494 494
      * Allowed install names: System, Global, Local
495 495
      *
496 496
      * @static
497
-     * @return array
497
+     * @return string[]
498 498
      */
499 499
     public static function returnAllowedInstallTypes()
500 500
     {
Please login to merge, or discard this patch.
typo3/sysext/extensionmanager/Classes/Domain/Model/Repository.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -204,7 +204,7 @@
 block discarded – undo
204 204
      * Method returns extension count
205 205
      *
206 206
      * @access public
207
-     * @return int count of read extensions
207
+     * @return string count of read extensions
208 208
      */
209 209
     public function getExtensionCount()
210 210
     {
Please login to merge, or discard this patch.