Completed
Pull Request — 3.x (#680)
by
unknown
15:44
created
src/ZfcUser/Options/AuthenticationOptionsInterface.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,13 +9,14 @@  discard block
 block discarded – undo
9 9
      * set login form timeout in seconds
10 10
      *
11 11
      * @param int $loginFormTimeout
12
+     * @return ModuleOptions
12 13
      */
13 14
     public function setLoginFormTimeout($loginFormTimeout);
14 15
 
15 16
     /**
16 17
      * set login form timeout in seconds
17 18
      *
18
-     * @param int $loginFormTimeout
19
+     * @return integer
19 20
      */
20 21
     public function getLoginFormTimeout();
21 22
 
@@ -52,7 +53,6 @@  discard block
 block discarded – undo
52 53
     /**
53 54
      * set use a csrf in login form
54 55
      *
55
-     * @param bool $useRegistrationFormCaptcha
56 56
      * @return ModuleOptions
57 57
      */
58 58
     public function setUseLoginFormCsrf($useLoginFormCsrf);
Please login to merge, or discard this patch.
src/ZfcUser/Options/ModuleOptions.php 1 patch
Doc Comments   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -376,7 +376,7 @@  discard block
 block discarded – undo
376 376
     /**
377 377
      * set auth adapters
378 378
      *
379
-     * @param array $authAdapterss
379
+     * @param array $authAdapters
380 380
      * @return ModuleOptions
381 381
      */
382 382
     public function setAuthAdapters($authAdapters)
@@ -486,7 +486,7 @@  discard block
 block discarded – undo
486 486
     /**
487 487
      * set use a captcha in login form
488 488
      *
489
-     * @param bool $useRegistrationFormCaptcha
489
+     * @param bool $useLoginFormCaptcha
490 490
      * @return ModuleOptions
491 491
      */
492 492
     public function setUseLoginFormCaptcha($useLoginFormCaptcha)
@@ -508,7 +508,6 @@  discard block
 block discarded – undo
508 508
     /**
509 509
      * set use a csrf in login form
510 510
      *
511
-     * @param bool $useRegistrationFormCaptcha
512 511
      * @return ModuleOptions
513 512
      */
514 513
     public function setUseLoginFormCsrf($useLoginFormCsrf)
Please login to merge, or discard this patch.
src/ZfcUser/Authentication/Adapter/AdapterChainServiceFactory.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -2,9 +2,6 @@
 block discarded – undo
2 2
 namespace ZfcUser\Authentication\Adapter;
3 3
 
4 4
 use Interop\Container\ContainerInterface;
5
-use Interop\Container\Exception\ContainerException;
6
-use Laminas\ServiceManager\Exception\ServiceNotCreatedException;
7
-use Laminas\ServiceManager\Exception\ServiceNotFoundException;
8 5
 use Laminas\ServiceManager\Factory\FactoryInterface;
9 6
 use Laminas\ServiceManager\ServiceLocatorInterface;
10 7
 use ZfcUser\Authentication\Adapter\AdapterChain;
Please login to merge, or discard this patch.
src/ZfcUser/Authentication/Adapter/Db.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use Interop\Container\ContainerInterface;
6 6
 use Laminas\Authentication\Result as AuthenticationResult;
7
-use Laminas\EventManager\EventInterface;
8 7
 use Laminas\ServiceManager\ServiceManager;
9 8
 use Laminas\Crypt\Password\Bcrypt;
10 9
 use Laminas\Session\Container as SessionContainer;
Please login to merge, or discard this patch.
src/ZfcUser/EventManager/EventProvider.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use Laminas\EventManager\EventManagerAwareInterface;
6 6
 use Laminas\EventManager\EventManagerInterface;
7 7
 use Laminas\EventManager\EventManager;
8
-use Laminas\EventManager\SharedEventManager;
9 8
 
10 9
 abstract class EventProvider implements EventManagerAwareInterface
11 10
 {
Please login to merge, or discard this patch.