@@ -36,7 +36,7 @@ |
||
36 | 36 | * |
37 | 37 | * @param ServiceLocatorInterface $serviceLocator |
38 | 38 | * |
39 | - * @return mixed |
|
39 | + * @return InvoiceAddress |
|
40 | 40 | */ |
41 | 41 | public function createService(ServiceLocatorInterface $serviceLocator) |
42 | 42 | { |
@@ -34,7 +34,7 @@ |
||
34 | 34 | } |
35 | 35 | |
36 | 36 | /** |
37 | - * @return string|\Zend\View\Helper\HelperInterface |
|
37 | + * @return string |
|
38 | 38 | */ |
39 | 39 | public function getViewHelper() |
40 | 40 | { |
@@ -27,7 +27,7 @@ |
||
27 | 27 | * |
28 | 28 | * @param ServiceLocatorInterface $serviceLocator |
29 | 29 | * |
30 | - * @return mixed |
|
30 | + * @return EventApplicationCreated |
|
31 | 31 | */ |
32 | 32 | public function createService(ServiceLocatorInterface $serviceLocator) |
33 | 33 | { |
@@ -170,7 +170,7 @@ discard block |
||
170 | 170 | /** |
171 | 171 | * Gets the mime-type of a file |
172 | 172 | * |
173 | - * @return mixed |
|
173 | + * @return string|null |
|
174 | 174 | */ |
175 | 175 | public function getType() |
176 | 176 | { |
@@ -192,7 +192,7 @@ discard block |
||
192 | 192 | /** |
193 | 193 | * Gets the uploaded date of a file |
194 | 194 | * |
195 | - * @return mixed |
|
195 | + * @return null|\DateTime |
|
196 | 196 | */ |
197 | 197 | public function getDateUploaded() |
198 | 198 | { |
@@ -228,7 +228,7 @@ discard block |
||
228 | 228 | /** |
229 | 229 | * Gets the length of the file |
230 | 230 | * |
231 | - * @return mixed |
|
231 | + * @return string|null |
|
232 | 232 | */ |
233 | 233 | public function getLength() |
234 | 234 | { |
@@ -98,7 +98,7 @@ |
||
98 | 98 | /** |
99 | 99 | * Gets an iterator to iterate over the enabled formulars. |
100 | 100 | * |
101 | - * @return \ArrayIterator |
|
101 | + * @return PriorityList |
|
102 | 102 | * @see IteratorAggregate::getIterator() |
103 | 103 | */ |
104 | 104 | public function getIterator() |
@@ -293,7 +293,7 @@ |
||
293 | 293 | * @param string|array $options String is either event name or aggregate name (when name is int). |
294 | 294 | * Array are the options from config. [ [event,..], method, priority, lazy] |
295 | 295 | * |
296 | - * @return array |
|
296 | + * @return \Zend\EventManager\EventManagerInterface |
|
297 | 297 | */ |
298 | 298 | protected function normalizeListenerOptions($name, $options) |
299 | 299 | { |
@@ -27,7 +27,7 @@ |
||
27 | 27 | * |
28 | 28 | * @param ServiceLocatorInterface $serviceLocator |
29 | 29 | * |
30 | - * @return mixed |
|
30 | + * @return StatusChange |
|
31 | 31 | */ |
32 | 32 | public function createService(ServiceLocatorInterface $serviceLocator) |
33 | 33 | { |
@@ -157,7 +157,7 @@ |
||
157 | 157 | |
158 | 158 | /** |
159 | 159 | * @param Application $application |
160 | - * @param $status |
|
160 | + * @param string $status |
|
161 | 161 | * |
162 | 162 | * @return AddressList |
163 | 163 | */ |
@@ -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; |
@@ -76,6 +78,9 @@ discard block |
||
76 | 78 | return $this->resetLink; |
77 | 79 | } |
78 | 80 | |
81 | + /** |
|
82 | + * @param \Auth\Entity\UserInterface $user |
|
83 | + */ |
|
79 | 84 | public function setUser($user) |
80 | 85 | { |
81 | 86 | $this->user = $user; |