Completed
Pull Request — master (#610)
by
unknown
08:57
created
src/DoctrineModule/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/DoctrineModule/Options/Authentication.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,6 @@
 block discarded – undo
23 23
 use Doctrine\Common\Persistence\ObjectManager;
24 24
 use Doctrine\Common\Persistence\ObjectRepository;
25 25
 use Zend\Authentication\Adapter\Exception;
26
-use Zend\Authentication\Storage\Session as SessionStorage;
27 26
 use Zend\Authentication\Storage\StorageInterface;
28 27
 use Zend\Stdlib\AbstractOptions;
29 28
 
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -139,7 +139,7 @@
 block discarded – undo
139 139
     }
140 140
 
141 141
     /**
142
-     * @return ObjectManager
142
+     * @return string
143 143
      */
144 144
     public function getObjectManager()
145 145
     {
Please login to merge, or discard this patch.
src/DoctrineModule/Stdlib/Hydrator/DoctrineObject.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -399,9 +399,9 @@
 block discarded – undo
399 399
      * changing the collection of the object
400 400
      *
401 401
      * @param  object $object
402
-     * @param  mixed  $collectionName
402
+     * @param  string  $collectionName
403 403
      * @param  string $target
404
-     * @param  mixed  $values
404
+     * @param  DateTime  $values
405 405
      *
406 406
      * @throws \InvalidArgumentException
407 407
      *
Please login to merge, or discard this patch.
src/DoctrineModule/Form/Element/Proxy.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -286,7 +286,7 @@  discard block
 block discarded – undo
286 286
     }
287 287
 
288 288
     /**
289
-     * @return mixed
289
+     * @return string
290 290
      */
291 291
     public function getProperty()
292 292
     {
@@ -368,7 +368,7 @@  discard block
 block discarded – undo
368 368
     }
369 369
 
370 370
     /**
371
-     * @return mixed
371
+     * @return boolean|null
372 372
      */
373 373
     public function getIsMethod()
374 374
     {
Please login to merge, or discard this patch.
tests/DoctrineModuleTest/Stdlib/Hydrator/Asset/OneToManyArrayEntity.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -23,6 +23,9 @@
 block discarded – undo
23 23
         $this->entities = new ArrayCollection();
24 24
     }
25 25
 
26
+    /**
27
+     * @param integer $id
28
+     */
26 29
     public function setId($id)
27 30
     {
28 31
         $this->id = $id;
Please login to merge, or discard this patch.
tests/DoctrineModuleTest/Stdlib/Hydrator/Asset/OneToManyEntity.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -23,6 +23,9 @@
 block discarded – undo
23 23
         $this->entities = new ArrayCollection();
24 24
     }
25 25
 
26
+    /**
27
+     * @param integer $id
28
+     */
26 29
     public function setId($id)
27 30
     {
28 31
         $this->id = $id;
Please login to merge, or discard this patch.
DoctrineModuleTest/Stdlib/Hydrator/Asset/OneToManyEntityWithEntities.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace DoctrineModuleTest\Stdlib\Hydrator\Asset;
4 4
 
5 5
 use Doctrine\Common\Collections\ArrayCollection;
6
-use Doctrine\Common\Collections\Collection;
7 6
 
8 7
 class OneToManyEntityWithEntities extends OneToManyEntity
9 8
 {
Please login to merge, or discard this patch.