@@ -169,7 +169,6 @@ |
||
169 | 169 | /** |
170 | 170 | * Set service manager instance |
171 | 171 | * |
172 | - * @param ServiceManager $locator |
|
173 | 172 | * @return void |
174 | 173 | */ |
175 | 174 | public function setServiceManager(ServiceManager $serviceManager) |
@@ -9,13 +9,14 @@ |
||
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 |
@@ -366,7 +366,7 @@ |
||
366 | 366 | /** |
367 | 367 | * set auth adapters |
368 | 368 | * |
369 | - * @param array $authAdapterss |
|
369 | + * @param array $authAdapters |
|
370 | 370 | * @return ModuleOptions |
371 | 371 | */ |
372 | 372 | public function setAuthAdapters($authAdapters) |
@@ -7,7 +7,6 @@ |
||
7 | 7 | /** |
8 | 8 | * set password cost |
9 | 9 | * |
10 | - * @param int $passwordCost |
|
11 | 10 | * @return ModuleOptions |
12 | 11 | */ |
13 | 12 | public function setPasswordCost($cost); |
@@ -7,7 +7,6 @@ discard block |
||
7 | 7 | /** |
8 | 8 | * set enable display name |
9 | 9 | * |
10 | - * @param bool $flag |
|
11 | 10 | * @return ModuleOptions |
12 | 11 | */ |
13 | 12 | public function setEnableDisplayName($enableDisplayName); |
@@ -23,6 +22,7 @@ discard block |
||
23 | 22 | * set enable user registration |
24 | 23 | * |
25 | 24 | * @param bool $enableRegistration |
25 | + * @return ModuleOptions |
|
26 | 26 | */ |
27 | 27 | public function setEnableRegistration($enableRegistration); |
28 | 28 | |
@@ -36,7 +36,6 @@ discard block |
||
36 | 36 | /** |
37 | 37 | * set enable username |
38 | 38 | * |
39 | - * @param bool $flag |
|
40 | 39 | * @return ModuleOptions |
41 | 40 | */ |
42 | 41 | public function setEnableUsername($enableUsername); |
@@ -52,6 +51,7 @@ discard block |
||
52 | 51 | * set user form timeout in seconds |
53 | 52 | * |
54 | 53 | * @param int $userFormTimeout |
54 | + * @return ModuleOptions |
|
55 | 55 | */ |
56 | 56 | public function setUserFormTimeout($userFormTimeout); |
57 | 57 |
@@ -82,7 +82,7 @@ |
||
82 | 82 | /** |
83 | 83 | * Ensure $object is an UserEntity |
84 | 84 | * |
85 | - * @param mixed $object |
|
85 | + * @param UserEntity $object |
|
86 | 86 | * @throws Exception\InvalidArgumentException |
87 | 87 | */ |
88 | 88 | protected function guardUserObject($object) |
@@ -169,7 +169,6 @@ |
||
169 | 169 | /** |
170 | 170 | * Set service manager instance |
171 | 171 | * |
172 | - * @param ServiceManager $locator |
|
173 | 172 | * @return void |
174 | 173 | */ |
175 | 174 | public function setServiceManager(ServiceManager $serviceManager) |
@@ -28,7 +28,6 @@ |
||
28 | 28 | /** |
29 | 29 | * Create controller |
30 | 30 | * |
31 | - * @param ControllerManager $serviceLocator |
|
32 | 31 | * @return UserController |
33 | 32 | */ |
34 | 33 | public function createService(ServiceLocatorInterface $controllerManager) |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | /** |
96 | 96 | * setUserMapper |
97 | 97 | * |
98 | - * @param UserMapperInterface $userMapper |
|
98 | + * @param UserMapper $userMapper |
|
99 | 99 | * @return User |
100 | 100 | */ |
101 | 101 | public function setUserMapper(UserMapper $userMapper) |
@@ -153,7 +153,7 @@ discard block |
||
153 | 153 | /** |
154 | 154 | * get service options |
155 | 155 | * |
156 | - * @return UserServiceOptionsInterface |
|
156 | + * @return ServiceOptions |
|
157 | 157 | */ |
158 | 158 | public function getOptions() |
159 | 159 | { |