Completed
Push — 1.2.x ( 9407d0 )
by Tom
06:40
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/Module.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,6 @@
 block discarded – undo
26 26
 use Zend\ModuleManager\ModuleManagerInterface;
27 27
 use Zend\EventManager\EventInterface;
28 28
 use Zend\Console\Adapter\AdapterInterface as Console;
29
-
30 29
 use Symfony\Component\Console\Input\StringInput;
31 30
 use DoctrineModule\Component\Console\Output\PropertyOutput;
32 31
 
Please login to merge, or discard this patch.
src/DoctrineModule/Options/Authentication.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
139 139
     }
140 140
 
141 141
     /**
142
-     * @return ObjectManager
142
+     * @return string
143 143
      */
144 144
     public function getObjectManager()
145 145
     {
@@ -289,7 +289,7 @@  discard block
 block discarded – undo
289 289
     }
290 290
 
291 291
     /**
292
-     * @return \Zend\Authentication\Storage\StorageInterface|string
292
+     * @return string
293 293
      */
294 294
     public function getStorage()
295 295
     {
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,6 @@
 block discarded – undo
20 20
 
21 21
 use DoctrineModule\Authentication\Storage\ObjectRepository;
22 22
 use DoctrineModule\Service\AbstractFactory;
23
-use Zend\Authentication\Storage\Session as SessionStorage;
24 23
 use Zend\ServiceManager\ServiceLocatorInterface;
25 24
 
26 25
 /**
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/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
49 49
      *     creating a service.
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/ModuleTest.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -20,10 +20,8 @@
 block discarded – undo
20 20
 namespace DoctrineModuleTest;
21 21
 
22 22
 use PHPUnit_Framework_TestCase;
23
-use PHPUnit_Framework_Assert;
24 23
 use PHPUnit_Framework_MockObject_MockObject;
25 24
 use DoctrineModule\Module;
26
-use DoctrineModuleTest\ServiceManagerFactory;
27 25
 use Symfony\Component\Console\Output\OutputInterface;
28 26
 use Symfony\Component\Console\Input\InputInterface;
29 27
 
Please login to merge, or discard this patch.