Completed
Push — master ( 753c87...0fd538 )
by Tom
01:44 queued 10s
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/Component/Console/Output/PropertyOutput.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
     }
62 62
 
63 63
     /**
64
-     * @return mixed
64
+     * @return string
65 65
      */
66 66
     public function getMessage()
67 67
     {
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.
src/DoctrineModule/Service/CliControllerFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
      * @param  string             $requestedName
44 44
      * @param  null|array         $options
45 45
      *
46
-     * @return object
46
+     * @return CliController
47 47
      * @throws ServiceNotFoundException if unable to resolve the service.
48 48
      * @throws ServiceNotCreatedException if an exception is raised when creating a service.
49 49
      * @throws ContainerException if any other error occurs
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
@@ -419,7 +419,7 @@  discard block
 block discarded – undo
419 419
      * target will be returned.
420 420
      *
421 421
      * @param  string $target
422
-     * @param  mixed  $value
422
+     * @param  null|DateTime  $value
423 423
      * @return object
424 424
      */
425 425
     protected function toOne($target, $value)
@@ -446,7 +446,7 @@  discard block
 block discarded – undo
446 446
      * changing the collection of the object
447 447
      *
448 448
      * @param  object $object
449
-     * @param  mixed  $collectionName
449
+     * @param  string  $collectionName
450 450
      * @param  string $target
451 451
      * @param  mixed  $values
452 452
      *
Please login to merge, or discard this patch.
tests/DoctrineModuleTest/Stdlib/Hydrator/DoctrineObjectTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,6 @@
 block discarded – undo
9 9
 use DoctrineModuleTest\Stdlib\Hydrator\Asset\SimpleEntity;
10 10
 use PHPUnit\Framework\TestCase as BaseTestCase;
11 11
 use Prophecy\Argument;
12
-use Prophecy\Prophecy\ObjectProphecy;
13 12
 use ReflectionClass;
14 13
 use Doctrine\Common\Collections\ArrayCollection;
15 14
 use DoctrineModule\Stdlib\Hydrator\DoctrineObject as DoctrineObjectHydrator;
Please login to merge, or discard this patch.
src/DoctrineModule/Module.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,6 @@
 block discarded – undo
9 9
 use Laminas\ModuleManager\ModuleManagerInterface;
10 10
 use Laminas\EventManager\EventInterface;
11 11
 use Laminas\Console\Adapter\AdapterInterface as Console;
12
-
13 12
 use Symfony\Component\Console\Input\StringInput;
14 13
 use DoctrineModule\Component\Console\Output\PropertyOutput;
15 14
 
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
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
 use Doctrine\Common\Persistence\ObjectManager;
7 7
 use Doctrine\Common\Persistence\ObjectRepository;
8 8
 use Laminas\Authentication\Adapter\Exception;
9
-use Laminas\Authentication\Storage\Session as SessionStorage;
10 9
 use Laminas\Authentication\Storage\StorageInterface;
11 10
 use Laminas\Stdlib\AbstractOptions;
12 11
 
Please login to merge, or discard this patch.
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
     }
123 123
 
124 124
     /**
125
-     * @return ObjectManager
125
+     * @return string
126 126
      */
127 127
     public function getObjectManager()
128 128
     {
@@ -272,7 +272,7 @@  discard block
 block discarded – undo
272 272
     }
273 273
 
274 274
     /**
275
-     * @return StorageInterface|string
275
+     * @return string
276 276
      */
277 277
     public function getStorage()
278 278
     {
Please login to merge, or discard this patch.