| Total Complexity | 2 |
| Total Lines | 37 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | class ForgotPasswordController extends AuthController |
||
| 10 | { |
||
| 11 | /* |
||
| 12 | |-------------------------------------------------------------------------- |
||
| 13 | | Password Reset Controller |
||
| 14 | |-------------------------------------------------------------------------- |
||
| 15 | | |
||
| 16 | | This controller is responsible for handling password reset emails and |
||
| 17 | | includes a trait which assists in sending these notifications from |
||
| 18 | | your application to your users. Feel free to explore this trait. |
||
| 19 | | |
||
| 20 | */ |
||
| 21 | |||
| 22 | use SendsPasswordResetEmails; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * Create a new controller instance. |
||
| 26 | * |
||
| 27 | * @return void |
||
| 28 | */ |
||
| 29 | public function __construct() |
||
| 30 | { |
||
| 31 | $this->middleware('guest'); |
||
| 32 | } |
||
| 33 | |||
| 34 | /** |
||
| 35 | * OVERRIDE |
||
| 36 | * |
||
| 37 | * Display the form to request a password reset link. |
||
| 38 | * |
||
| 39 | * @return \Illuminate\Http\Response |
||
| 40 | */ |
||
| 41 | public function showLinkRequestForm() |
||
| 46 | ]); |
||
| 47 | } |
||
| 49 |