@@ -161,7 +161,7 @@ discard block |
||
161 | 161 | /** |
162 | 162 | * Account sign in form processing. |
163 | 163 | * |
164 | - * @return Redirect |
|
164 | + * @return \Illuminate\Http\RedirectResponse |
|
165 | 165 | */ |
166 | 166 | public function postSignin() |
167 | 167 | { |
@@ -361,7 +361,7 @@ discard block |
||
361 | 361 | /** |
362 | 362 | * Forgot password form processing page. |
363 | 363 | * |
364 | - * @return Redirect |
|
364 | + * @return \Illuminate\Http\RedirectResponse |
|
365 | 365 | */ |
366 | 366 | public function postForgotPassword() |
367 | 367 | { |
@@ -411,7 +411,7 @@ discard block |
||
411 | 411 | * |
412 | 412 | * @param number $userId |
413 | 413 | * @param string $passwordResetCode |
414 | - * @return Redirect |
|
414 | + * @return \Illuminate\Http\RedirectResponse |
|
415 | 415 | */ |
416 | 416 | public function postForgotPasswordConfirm($userId, $passwordResetCode) |
417 | 417 | { |
@@ -76,7 +76,6 @@ discard block |
||
76 | 76 | /** |
77 | 77 | * Display specified user profil. |
78 | 78 | * |
79 | - * @param int $id |
|
80 | 79 | * @return Response |
81 | 80 | */ |
82 | 81 | public function show(User $user) |
@@ -209,7 +208,6 @@ discard block |
||
209 | 208 | /** |
210 | 209 | * Change password form processing page. |
211 | 210 | * |
212 | - * @param int $id |
|
213 | 211 | * @return Redirect |
214 | 212 | */ |
215 | 213 | public function postChangePassword() |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | * Group update form processing page. |
88 | 88 | * |
89 | 89 | * @param int $id |
90 | - * @return Redirect |
|
90 | + * @return \Illuminate\Http\RedirectResponse |
|
91 | 91 | */ |
92 | 92 | public function postEdit($id = null) |
93 | 93 | { |
@@ -164,7 +164,7 @@ discard block |
||
164 | 164 | /** |
165 | 165 | * Group create form processing. |
166 | 166 | * |
167 | - * @return Redirect |
|
167 | + * @return \Illuminate\Http\RedirectResponse |
|
168 | 168 | */ |
169 | 169 | public function postCreate() |
170 | 170 | { |
@@ -232,7 +232,7 @@ discard block |
||
232 | 232 | * Delete the given group. |
233 | 233 | * |
234 | 234 | * @param int $id |
235 | - * @return Redirect |
|
235 | + * @return \Illuminate\Http\RedirectResponse |
|
236 | 236 | */ |
237 | 237 | public function getDelete($id = null) |
238 | 238 | { |