@@ -126,7 +126,7 @@ discard block |
||
126 | 126 | /** |
127 | 127 | * {@inheritdoc} |
128 | 128 | * |
129 | - * @return \Auth\Entity\User |
|
129 | + * @return Info |
|
130 | 130 | */ |
131 | 131 | public function setBirthDay($birthDay) |
132 | 132 | { |
@@ -147,7 +147,7 @@ discard block |
||
147 | 147 | /** |
148 | 148 | * {@inheritdoc} |
149 | 149 | * |
150 | - * @return \Auth\Entity\User |
|
150 | + * @return Info |
|
151 | 151 | */ |
152 | 152 | public function setBirthMonth($birthMonth) |
153 | 153 | { |
@@ -168,7 +168,7 @@ discard block |
||
168 | 168 | /** |
169 | 169 | * {@inheritdoc} |
170 | 170 | * |
171 | - * @return \Auth\Entity\User |
|
171 | + * @return Info |
|
172 | 172 | */ |
173 | 173 | public function setBirthYear($birthYear) |
174 | 174 | { |
@@ -232,7 +232,7 @@ discard block |
||
232 | 232 | /** |
233 | 233 | * {@inheritdoc} |
234 | 234 | * |
235 | - * @return \Auth\Entity\User |
|
235 | + * @return Info |
|
236 | 236 | */ |
237 | 237 | public function setFirstName($firstName) |
238 | 238 | { |
@@ -254,7 +254,7 @@ discard block |
||
254 | 254 | /** |
255 | 255 | * {@inheritdoc} |
256 | 256 | * |
257 | - * @return \Auth\Entity\User |
|
257 | + * @return Info |
|
258 | 258 | */ |
259 | 259 | public function setGender($gender) |
260 | 260 | { |
@@ -275,7 +275,7 @@ discard block |
||
275 | 275 | /** |
276 | 276 | * {@inheritdoc} |
277 | 277 | * |
278 | - * @return \Auth\Entity\User |
|
278 | + * @return Info |
|
279 | 279 | */ |
280 | 280 | public function setHouseNumber($houseNumber) |
281 | 281 | { |
@@ -296,7 +296,7 @@ discard block |
||
296 | 296 | /** |
297 | 297 | * {@inheritdoc} |
298 | 298 | * |
299 | - * @return \Auth\Entity\User |
|
299 | + * @return Info |
|
300 | 300 | */ |
301 | 301 | public function setLastName($name) |
302 | 302 | { |
@@ -325,7 +325,7 @@ discard block |
||
325 | 325 | /** |
326 | 326 | * {@inheritdoc} |
327 | 327 | * |
328 | - * @return \Auth\Entity\User |
|
328 | + * @return Info |
|
329 | 329 | */ |
330 | 330 | public function setPhone($phone) |
331 | 331 | { |
@@ -346,7 +346,7 @@ discard block |
||
346 | 346 | /** |
347 | 347 | * {@inheritdoc} |
348 | 348 | * |
349 | - * @return \Auth\Entity\User |
|
349 | + * @return Info |
|
350 | 350 | */ |
351 | 351 | public function setPostalCode($postalCode) |
352 | 352 | { |
@@ -367,7 +367,7 @@ discard block |
||
367 | 367 | /** |
368 | 368 | * {@inheritdoc} |
369 | 369 | * |
370 | - * @return \Auth\Entity\User |
|
370 | + * @return Info |
|
371 | 371 | */ |
372 | 372 | public function setCity($city) |
373 | 373 | { |
@@ -409,7 +409,7 @@ discard block |
||
409 | 409 | /** |
410 | 410 | * {@inheritdoc} |
411 | 411 | * |
412 | - * @return \Auth\Entity\User |
|
412 | + * @return Info |
|
413 | 413 | */ |
414 | 414 | public function setStreet($street) |
415 | 415 | { |
@@ -130,7 +130,7 @@ discard block |
||
130 | 130 | */ |
131 | 131 | public function setBirthDay($birthDay) |
132 | 132 | { |
133 | - $this->birthDay=$birthDay; |
|
133 | + $this->birthDay = $birthDay; |
|
134 | 134 | return $this; |
135 | 135 | } |
136 | 136 | |
@@ -151,7 +151,7 @@ discard block |
||
151 | 151 | */ |
152 | 152 | public function setBirthMonth($birthMonth) |
153 | 153 | { |
154 | - $this->birthMonth=$birthMonth; |
|
154 | + $this->birthMonth = $birthMonth; |
|
155 | 155 | return $this; |
156 | 156 | } |
157 | 157 | |
@@ -172,7 +172,7 @@ discard block |
||
172 | 172 | */ |
173 | 173 | public function setBirthYear($birthYear) |
174 | 174 | { |
175 | - $this->birthYear=$birthYear; |
|
175 | + $this->birthYear = $birthYear; |
|
176 | 176 | return $this; |
177 | 177 | } |
178 | 178 | |
@@ -193,7 +193,7 @@ discard block |
||
193 | 193 | */ |
194 | 194 | public function setEmail($email) |
195 | 195 | { |
196 | - $this->email = trim((String)$email); |
|
196 | + $this->email = trim((String) $email); |
|
197 | 197 | return $this; |
198 | 198 | } |
199 | 199 | |
@@ -236,7 +236,7 @@ discard block |
||
236 | 236 | */ |
237 | 237 | public function setFirstName($firstName) |
238 | 238 | { |
239 | - $this->firstName = trim((String)$firstName); |
|
239 | + $this->firstName = trim((String) $firstName); |
|
240 | 240 | return $this; |
241 | 241 | } |
242 | 242 | |
@@ -258,7 +258,7 @@ discard block |
||
258 | 258 | */ |
259 | 259 | public function setGender($gender) |
260 | 260 | { |
261 | - $this->gender = trim((String)$gender); |
|
261 | + $this->gender = trim((String) $gender); |
|
262 | 262 | return $this; |
263 | 263 | } |
264 | 264 | |
@@ -279,7 +279,7 @@ discard block |
||
279 | 279 | */ |
280 | 280 | public function setHouseNumber($houseNumber) |
281 | 281 | { |
282 | - $this->houseNumber=$houseNumber; |
|
282 | + $this->houseNumber = $houseNumber; |
|
283 | 283 | return $this; |
284 | 284 | } |
285 | 285 | |
@@ -413,7 +413,7 @@ discard block |
||
413 | 413 | */ |
414 | 414 | public function setStreet($street) |
415 | 415 | { |
416 | - $this->street=$street; |
|
416 | + $this->street = $street; |
|
417 | 417 | return $this; |
418 | 418 | } |
419 | 419 |
@@ -1,11 +1,11 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * YAWIK |
|
4 | - * |
|
5 | - * @filesource |
|
6 | - * @copyright (c) 2013-2015 Cross Solution (http://cross-solution.de) |
|
7 | - * @license MIT |
|
8 | - */ |
|
3 | + * YAWIK |
|
4 | + * |
|
5 | + * @filesource |
|
6 | + * @copyright (c) 2013-2015 Cross Solution (http://cross-solution.de) |
|
7 | + * @license MIT |
|
8 | + */ |
|
9 | 9 | |
10 | 10 | /** SettingsEntityResolverFactory.php */ |
11 | 11 | namespace Settings\Repository; |
@@ -23,6 +23,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
@@ -1,11 +1,11 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * YAWIK |
|
4 | - * |
|
5 | - * @filesource |
|
6 | - * @copyright (c) 2013-2015 Cross Solution (http://cross-solution.de) |
|
7 | - * @license MIT |
|
8 | - */ |
|
3 | + * YAWIK |
|
4 | + * |
|
5 | + * @filesource |
|
6 | + * @copyright (c) 2013-2015 Cross Solution (http://cross-solution.de) |
|
7 | + * @license MIT |
|
8 | + */ |
|
9 | 9 | |
10 | 10 | /** Auth model */ |
11 | 11 | namespace Auth\Entity; |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | * Gets the Day of the date of birth |
31 | 31 | * |
32 | 32 | * @return string |
33 | - */ |
|
33 | + */ |
|
34 | 34 | public function getBirthDay(); |
35 | 35 | |
36 | 36 | /** |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | * Gets the month of the date of birth |
45 | 45 | * |
46 | 46 | * @return string |
47 | - */ |
|
47 | + */ |
|
48 | 48 | public function getBirthMonth(); |
49 | 49 | |
50 | 50 | /** |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | * Gets the Year of the date of birth. |
59 | 59 | * |
60 | 60 | * @return string |
61 | - */ |
|
61 | + */ |
|
62 | 62 | public function getBirthYear(); |
63 | 63 | |
64 | 64 | /** |
@@ -111,7 +111,7 @@ discard block |
||
111 | 111 | * Gets the gender |
112 | 112 | * |
113 | 113 | * @return string |
114 | - */ |
|
114 | + */ |
|
115 | 115 | public function getGender(); |
116 | 116 | |
117 | 117 | |
@@ -152,7 +152,7 @@ discard block |
||
152 | 152 | * Gets the users street |
153 | 153 | * |
154 | 154 | * @return string |
155 | - */ |
|
155 | + */ |
|
156 | 156 | public function getStreet(); |
157 | 157 | |
158 | 158 | /** |
@@ -24,7 +24,7 @@ |
||
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) |
@@ -1,11 +1,11 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * YAWIK |
|
4 | - * |
|
5 | - * @filesource |
|
6 | - * @copyright (c) 2013-2015 Cross Solution (http://cross-solution.de) |
|
7 | - * @license MIT |
|
8 | - */ |
|
3 | + * YAWIK |
|
4 | + * |
|
5 | + * @filesource |
|
6 | + * @copyright (c) 2013-2015 Cross Solution (http://cross-solution.de) |
|
7 | + * @license MIT |
|
8 | + */ |
|
9 | 9 | |
10 | 10 | /** SettingsEntityResolverFactory.php */ |
11 | 11 | namespace Settings\Repository; |
@@ -26,7 +26,7 @@ |
||
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) |
@@ -1,11 +1,11 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * YAWIK |
|
4 | - * |
|
5 | - * @filesource |
|
6 | - * @copyright (c) 2013-2015 Cross Solution (http://cross-solution.de) |
|
7 | - * @license MIT |
|
8 | - */ |
|
3 | + * YAWIK |
|
4 | + * |
|
5 | + * @filesource |
|
6 | + * @copyright (c) 2013-2015 Cross Solution (http://cross-solution.de) |
|
7 | + * @license MIT |
|
8 | + */ |
|
9 | 9 | |
10 | 10 | /** SettingsEntityResolverFactory.php */ |
11 | 11 | namespace Settings\Repository; |
@@ -25,7 +25,7 @@ |
||
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 | { |
@@ -1,11 +1,11 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * YAWIK |
|
4 | - * |
|
5 | - * @filesource |
|
6 | - * @copyright (c) 2013-2015 Cross Solution (http://cross-solution.de) |
|
7 | - * @license MIT |
|
8 | - */ |
|
3 | + * YAWIK |
|
4 | + * |
|
5 | + * @filesource |
|
6 | + * @copyright (c) 2013-2015 Cross Solution (http://cross-solution.de) |
|
7 | + * @license MIT |
|
8 | + */ |
|
9 | 9 | |
10 | 10 | namespace Organizations\Factory\Controller; |
11 | 11 |
@@ -84,7 +84,7 @@ |
||
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) |
@@ -1,11 +1,11 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * YAWIK |
|
4 | - * |
|
5 | - * @filesource |
|
6 | - * @copyright (c) 2013-2015 Cross Solution (http://cross-solution.de) |
|
7 | - * @license MIT |
|
8 | - */ |
|
3 | + * YAWIK |
|
4 | + * |
|
5 | + * @filesource |
|
6 | + * @copyright (c) 2013-2015 Cross Solution (http://cross-solution.de) |
|
7 | + * @license MIT |
|
8 | + */ |
|
9 | 9 | |
10 | 10 | /** SettingsEntityResolverFactory.php */ |
11 | 11 | namespace Settings\Repository; |
@@ -40,7 +40,7 @@ |
||
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) |
@@ -1,11 +1,11 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * YAWIK |
|
4 | - * |
|
5 | - * @filesource |
|
6 | - * @copyright (c) 2013-2015 Cross Solution (http://cross-solution.de) |
|
7 | - * @license MIT |
|
8 | - */ |
|
3 | + * YAWIK |
|
4 | + * |
|
5 | + * @filesource |
|
6 | + * @copyright (c) 2013-2015 Cross Solution (http://cross-solution.de) |
|
7 | + * @license MIT |
|
8 | + */ |
|
9 | 9 | |
10 | 10 | /** UsersCollection.php */ |
11 | 11 | namespace Auth\Form; |
@@ -98,9 +98,9 @@ discard block |
||
98 | 98 | ); |
99 | 99 | |
100 | 100 | $this->setCount(0) |
101 | - ->setAllowRemove(true) |
|
102 | - ->setAllowAdd(true) |
|
103 | - ->setShouldCreateTemplate(true); |
|
101 | + ->setAllowRemove(true) |
|
102 | + ->setAllowAdd(true) |
|
103 | + ->setShouldCreateTemplate(true); |
|
104 | 104 | |
105 | 105 | |
106 | 106 | } |
@@ -32,7 +32,7 @@ |
||
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() |
@@ -1,11 +1,11 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * YAWIK |
|
4 | - * |
|
5 | - * @filesource |
|
6 | - * @copyright (c) 2013-2015 Cross Solution (http://cross-solution.de) |
|
7 | - * @license MIT |
|
8 | - */ |
|
3 | + * YAWIK |
|
4 | + * |
|
5 | + * @filesource |
|
6 | + * @copyright (c) 2013-2015 Cross Solution (http://cross-solution.de) |
|
7 | + * @license MIT |
|
8 | + */ |
|
9 | 9 | |
10 | 10 | /** SettingsEntityResolverFactory.php */ |
11 | 11 | namespace Settings\Repository; |
@@ -35,8 +35,7 @@ discard block |
||
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 |
||
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; |
@@ -22,7 +22,7 @@ |
||
22 | 22 | /** |
23 | 23 | * a new password was created |
24 | 24 | */ |
25 | - const EVENT_AUTH_NEWPASSWORD = 'auth.newpassword'; |
|
25 | + const EVENT_AUTH_NEWPASSWORD = 'auth.newpassword'; |
|
26 | 26 | |
27 | 27 | protected $userEntity; |
28 | 28 |
@@ -1,12 +1,12 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * YAWIK |
|
4 | - * |
|
5 | - * @filesource |
|
6 | - * @copyright (c) 2013-2015 Cross Solution (http://cross-solution.de) |
|
7 | - * @license MIT |
|
8 | - * @author [email protected] |
|
9 | - */ |
|
3 | + * YAWIK |
|
4 | + * |
|
5 | + * @filesource |
|
6 | + * @copyright (c) 2013-2015 Cross Solution (http://cross-solution.de) |
|
7 | + * @license MIT |
|
8 | + * @author [email protected] |
|
9 | + */ |
|
10 | 10 | |
11 | 11 | namespace Organizations\Form; |
12 | 12 |