Completed
Pull Request — master (#564)
by Michał
06:47
created
src/Authentication/Storage/ObjectRepository.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@
 block discarded – undo
98 98
     }
99 99
     
100 100
     /**
101
-     * @param  object $identity
101
+     * @param  \DoctrineModuleTest\Authentication\Adapter\TestAsset\IdentityObject $identity
102 102
      * @return void
103 103
      */
104 104
     public function write($identity)
Please login to merge, or discard this patch.
src/Form/Element/Proxy.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -284,7 +284,7 @@  discard block
 block discarded – undo
284 284
     }
285 285
 
286 286
     /**
287
-     * @return mixed
287
+     * @return string
288 288
      */
289 289
     public function getProperty()
290 290
     {
@@ -312,7 +312,7 @@  discard block
 block discarded – undo
312 312
     }
313 313
 
314 314
     /**
315
-     * @return callable|null
315
+     * @return callable
316 316
      */
317 317
     public function getLabelGenerator()
318 318
     {
@@ -366,7 +366,7 @@  discard block
 block discarded – undo
366 366
     }
367 367
 
368 368
     /**
369
-     * @return mixed
369
+     * @return boolean|null
370 370
      */
371 371
     public function getIsMethod()
372 372
     {
Please login to merge, or discard this patch.
src/Options/Authentication.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -288,7 +288,7 @@
 block discarded – undo
288 288
     }
289 289
 
290 290
     /**
291
-     * @return StorageInterface|string
291
+     * @return string
292 292
      */
293 293
     public function getStorage()
294 294
     {
Please login to merge, or discard this patch.
src/Stdlib/Hydrator/DoctrineObject.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -396,9 +396,9 @@
 block discarded – undo
396 396
      * changing the collection of the object
397 397
      *
398 398
      * @param  object $object
399
-     * @param  mixed  $collectionName
399
+     * @param  string  $collectionName
400 400
      * @param  string $target
401
-     * @param  mixed  $values
401
+     * @param  \DateTime  $values
402 402
      *
403 403
      * @throws \InvalidArgumentException
404 404
      *
Please login to merge, or discard this patch.
tests/Form/Element/ProxyAwareElementTestCase.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -113,7 +113,7 @@
 block discarded – undo
113 113
     /**
114 114
      * Proxy should stay read only, use with care
115 115
      *
116
-     * @param $proxy
116
+     * @param \PHPUnit_Framework_MockObject_MockObject $proxy
117 117
      * @param $element
118 118
      */
119 119
     protected function setProxyViaReflection($proxy, $element = null)
Please login to merge, or discard this patch.