Completed
Push — develop ( 60c2a6...7c4b2f )
by Carsten
61:42 queued 47:32
created
module/Auth/src/Auth/Entity/InfoInterface.php 1 patch
Doc Comments   +13 added lines patch added patch discarded remove patch
@@ -23,6 +23,7 @@  discard block
 block discarded – undo
23 23
      * Sets the Day of the date of birth.
24 24
      *
25 25
      * @param string $birthDay
26
+     * @return Info
26 27
      */
27 28
     public function setBirthDay($birthDay);
28 29
     
@@ -37,6 +38,7 @@  discard block
 block discarded – undo
37 38
      * Sets the month of the date of birth.
38 39
      *
39 40
      * @param string $birthMonth
41
+     * @return Info
40 42
      */
41 43
     public function setBirthMonth($birthMonth);
42 44
     
@@ -51,6 +53,7 @@  discard block
 block discarded – undo
51 53
      * Sets the year of the date of birth.
52 54
      *
53 55
      * @param string $email
56
+     * @return Info
54 57
      */
55 58
     public function setBirthYear($email);
56 59
     
@@ -65,6 +68,7 @@  discard block
 block discarded – undo
65 68
      * Sets the email.
66 69
      *
67 70
      * @param string $email
71
+     * @return Info
68 72
      */
69 73
     public function setEmail($email);
70 74
     
@@ -90,6 +94,7 @@  discard block
 block discarded – undo
90 94
      * Sets the first name
91 95
      *
92 96
      * @param string $name
97
+     * @return Info
93 98
      */
94 99
     public function setFirstName($name);
95 100
     
@@ -104,6 +109,7 @@  discard block
 block discarded – undo
104 109
      * Sets the gender
105 110
      *
106 111
      * @param string $gender
112
+     * @return Info
107 113
      */
108 114
     public function setGender($gender);
109 115
     
@@ -119,6 +125,7 @@  discard block
 block discarded – undo
119 125
      * Sets the last name
120 126
      *
121 127
      * @param string $name
128
+     * @return Info
122 129
      */
123 130
     public function setLastName($name);
124 131
     
@@ -133,11 +140,13 @@  discard block
 block discarded – undo
133 140
      * Sets the profile Image of an user
134 141
      *
135 142
      * @param EntityInterface $image
143
+     * @return Info
136 144
      */
137 145
     public function setImage(EntityInterface $image = null);
138 146
     
139 147
     /**
140 148
      * Gets the profile Image of an user
149
+     * @return UserImage
141 150
      */
142 151
     public function getImage();
143 152
     
@@ -145,6 +154,7 @@  discard block
 block discarded – undo
145 154
      * Sets the users street
146 155
      *
147 156
      * @param string $name
157
+     * @return Info
148 158
      */
149 159
     public function setStreet($name);
150 160
     
@@ -159,6 +169,7 @@  discard block
 block discarded – undo
159 169
      * Sets the users house number
160 170
      *
161 171
      * @param string $houseNumber
172
+     * @return Info
162 173
      */
163 174
     public function setHouseNumber($houseNumber);
164 175
     
@@ -184,6 +195,7 @@  discard block
 block discarded – undo
184 195
      *
185 196
      * @param string $postalCode
186 197
      * @since 0.20
198
+     * @return Info
187 199
      */
188 200
     public function setPostalCode($postalCode);
189 201
 
@@ -200,6 +212,7 @@  discard block
 block discarded – undo
200 212
      *
201 213
      * @param string $city
202 214
      * @since 0.20
215
+     * @return Info
203 216
      */
204 217
     public function setCity($city);
205 218
 
Please login to merge, or discard this patch.
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/Element/SocialProfilesButton.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@
 block discarded – undo
84 84
      * -
85 85
      *
86 86
      * @param  array|Traversable $options
87
-     * @return Element|ElementInterface
87
+     * @return SocialProfilesButton
88 88
      * @throws Exception\InvalidArgumentException
89 89
      */
90 90
     public function setOptions($options)
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/MailForgotPassword.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
 
39 39
     /**
40 40
      * allows an event attachment just by class
41
-     * @param JobEvent $e
41
+     * @param AuthEvent $e
42 42
      */
43 43
     public function __invoke(AuthEvent $e)
44 44
     {
Please login to merge, or discard this patch.