Completed
Push — develop ( 31c340...db8caa )
by Mathias
08:35
created
module/Auth/src/Auth/Factory/Listener/UnauthorizedAccessListenerFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
      * - Injects the AuthenticationService
25 25
      *
26 26
      * @param ServiceLocatorInterface $serviceLocator
27
-     * @return \Auth\View\Helper\Auth
27
+     * @return Listener
28 28
      * @see \Zend\ServiceManager\FactoryInterface::createService()
29 29
      */
30 30
     public function createService(ServiceLocatorInterface $serviceLocator)
Please login to merge, or discard this patch.
module/Auth/src/Auth/Factory/Service/AuthenticationServiceFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
      * - injects the UserMapper fetched from the service manager.
27 27
      *
28 28
      * @param ServiceLocatorInterface $serviceLocator
29
-     * @return \Auth\Adapter\HybridAuth
29
+     * @return AuthenticationService
30 30
      * @see \Zend\ServiceManager\FactoryInterface::createService()
31 31
      */
32 32
     public function createService(ServiceLocatorInterface $serviceLocator)
Please login to merge, or discard this patch.
module/Auth/src/Auth/Factory/Service/GotoResetPasswordFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
      *
26 26
      * @param ServiceLocatorInterface $serviceLocator
27 27
      *
28
-     * @return ForgotPassword
28
+     * @return GotoResetPassword
29 29
      */
30 30
     public function createService(ServiceLocatorInterface $serviceLocator)
31 31
     {
Please login to merge, or discard this patch.
module/Auth/src/Auth/Form/GroupUsersCollection.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
     
41 41
     /**
42 42
      * {@inheritDoc}
43
-     * @return GroupsUsersCollection
43
+     * @return GroupUsersCollection
44 44
      * @see \Core\Form\ViewPartialProviderInterface::setViewPartial()
45 45
      */
46 46
     public function setViewPartial($partial)
Please login to merge, or discard this patch.
module/Auth/src/Auth/Form/UserInfoContainer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
     
33 33
     /**
34 34
      * {@inheritDoc}
35
-     * @return UserInfoContainer
35
+     * @return string
36 36
      * @see \Core\Form\ViewPartialProviderInterface::getViewPartial()
37 37
      */
38 38
     public function getViewPartial()
Please login to merge, or discard this patch.
module/Auth/src/Auth/Listener/Events/AuthEvent.php 1 patch
Doc Comments   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,8 +35,7 @@  discard block
 block discarded – undo
35 35
     /**
36 36
      * Sets the job entity
37 37
      *
38
-     * @param  Job $jobEntity
39
-     * @return MvcEvent
38
+     * @return AuthEvent
40 39
      */
41 40
     public function setUserEntity($userEntity)
42 41
     {
@@ -65,6 +64,9 @@  discard block
 block discarded – undo
65 64
         return $this->newPassword;
66 65
     }
67 66
 
67
+    /**
68
+     * @param string $resetLink
69
+     */
68 70
     public function setResetLink($resetLink)
69 71
     {
70 72
         $this->resetLink = $resetLink;
Please login to merge, or discard this patch.
module/Auth/src/Auth/Listener/TokenListener.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
      * Detach all our listeners from the event manager
50 50
      *
51 51
      * @param  SharedEventManagerInterface $events
52
-     * @return void
52
+     * @return boolean
53 53
      */
54 54
     public function detachShared(SharedEventManagerInterface $events)
55 55
     {
Please login to merge, or discard this patch.
module/Auth/src/Auth/Options/ModuleOptions.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@
 block discarded – undo
121 121
     /**
122 122
      * Sets the From: of the mail header
123 123
      *
124
-     * @param $fromName
124
+     * @param string $fromName
125 125
      * @return $this
126 126
      */
127 127
     public function setFromName($fromName)
Please login to merge, or discard this patch.
module/Auth/src/Auth/Repository/User.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
      * Creates a User
65 65
      *
66 66
      * @see \Core\Repository\AbstractRepository::create()
67
-     * @return UserInterface
67
+     * @return \Core\Entity\EntityInterface
68 68
      */
69 69
     public function create(array $data = null)
70 70
     {
@@ -103,10 +103,10 @@  discard block
 block discarded – undo
103 103
     }
104 104
 
105 105
     /**
106
-     * @param      $email
106
+     * @param      string $email
107 107
      * @param bool $isDraft
108 108
      *
109
-     * @return UserInterface|null
109
+     * @return UserInterface
110 110
      */
111 111
     public function findByEmail($email, $isDraft = false)
112 112
     {
Please login to merge, or discard this patch.