Completed
Push — master ( f2b8b4...a21374 )
by Tom
24s queued 11s
created
src/DoctrineModule/Authentication/Storage/ObjectRepository.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
     }
73 73
 
74 74
     /**
75
-     * @param mixed $identity
75
+     * @param \DoctrineModuleTest\Authentication\Adapter\TestAsset\IdentityObject $identity
76 76
      */
77 77
     public function write($identity) : void
78 78
     {
Please login to merge, or discard this patch.
src/DoctrineModule/Controller/CliController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
     /**
36 36
      * Index action - runs the console application
37 37
      *
38
-     * @return mixed
38
+     * @return ViewModel|null
39 39
      */
40 40
     public function cliAction()
41 41
     {
Please login to merge, or discard this patch.
src/DoctrineModule/Form/Element/ObjectRadio.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
     }
35 35
 
36 36
     /**
37
-     * @param mixed $value
37
+     * @param boolean $value
38 38
      *
39 39
      * {@inheritDoc}
40 40
      */
Please login to merge, or discard this patch.
src/DoctrineModule/Options/Authentication.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -128,7 +128,7 @@
 block discarded – undo
128 128
      * when return type is specified
129 129
      * : ObjectManager
130 130
      *
131
-     * @return mixed
131
+     * @return string
132 132
      */
133 133
     public function getObjectManager()
134 134
     {
Please login to merge, or discard this patch.
src/DoctrineModule/Paginator/Adapter/Collection.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
     protected $collection;
16 16
 
17 17
     /**
18
-     * @param mixed[] $collection
18
+     * @param DoctrineCollection $collection
19 19
      */
20 20
     public function __construct(DoctrineCollection $collection)
21 21
     {
Please login to merge, or discard this patch.
src/DoctrineModule/Form/Element/ObjectSelect.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
     }
35 35
 
36 36
     /**
37
-     * @param mixed $value
37
+     * @param boolean $value
38 38
      *
39 39
      * {@inheritDoc}
40 40
      */
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
@@ -13,7 +13,6 @@
 block discarded – undo
13 13
 use Laminas\ModuleManager\Feature\InitProviderInterface;
14 14
 use Laminas\ModuleManager\ModuleManagerInterface;
15 15
 use Laminas\ServiceManager\ServiceLocatorInterface;
16
-use Symfony\Component\Console\Application;
17 16
 use Symfony\Component\Console\Input\StringInput;
18 17
 use function class_exists;
19 18
 
Please login to merge, or discard this patch.
src/DoctrineModule/Service/CliControllerFactory.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,6 @@
 block discarded – undo
11 11
 use Laminas\ServiceManager\Exception\ServiceNotFoundException;
12 12
 use Laminas\ServiceManager\FactoryInterface;
13 13
 use Laminas\ServiceManager\ServiceLocatorInterface;
14
-use Symfony\Component\Console\Application;
15 14
 
16 15
 /**
17 16
  * Factory responsible of instantiating an {@see \DoctrineModule\Controller\CliController}
Please login to merge, or discard this patch.
src/DoctrineModule/Service/DriverFactory.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,6 @@
 block discarded – undo
7 7
 use Doctrine\Common\Annotations;
8 8
 use Doctrine\Common\Persistence\Mapping\Driver\DefaultFileLocator;
9 9
 use Doctrine\Common\Persistence\Mapping\Driver\FileDriver;
10
-use Doctrine\Common\Persistence\Mapping\Driver\FileLocator;
11 10
 use Doctrine\Common\Persistence\Mapping\Driver\MappingDriver;
12 11
 use Doctrine\Common\Persistence\Mapping\Driver\MappingDriverChain;
13 12
 use DoctrineModule\Options\Driver as DriverOptions;
Please login to merge, or discard this patch.