1 | <?php |
||
10 | class ForgotPasswordController extends Controller |
||
11 | { |
||
12 | /* |
||
13 | |-------------------------------------------------------------------------- |
||
14 | | Password Reset Controller |
||
15 | |-------------------------------------------------------------------------- |
||
16 | | |
||
17 | | This controller is responsible for handling password reset emails and |
||
18 | | includes a trait which assists in sending these notifications from |
||
19 | | your application to your users. Feel free to explore this trait. |
||
20 | | |
||
21 | */ |
||
22 | |||
23 | use SendsPasswordResetEmails; |
||
24 | |||
25 | /** |
||
26 | * Display the form to request a password reset link. |
||
27 | * |
||
28 | * @return \Illuminate\View\View |
||
29 | */ |
||
30 | public function showLinkRequestForm() |
||
34 | |||
35 | /** |
||
36 | * Get the response for a successful password reset link. |
||
37 | * |
||
38 | * @param \Illuminate\Http\Request $request |
||
39 | * @param string $response |
||
40 | * @return \Illuminate\Http\RedirectResponse |
||
41 | */ |
||
42 | protected function sendResetLinkResponse(Request $request, $response) |
||
49 | } |
||
50 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.