| Total Complexity | 1 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | class ResetPasswordController extends Controller |
||
| 11 | { |
||
| 12 | /* |
||
| 13 | |-------------------------------------------------------------------------- |
||
| 14 | | Password Reset Controller |
||
| 15 | |-------------------------------------------------------------------------- |
||
| 16 | | |
||
| 17 | | This controller is responsible for handling password reset requests |
||
| 18 | | and uses a simple trait to include this behavior. You're free to |
||
| 19 | | explore this trait and override any methods you wish to tweak. |
||
| 20 | | |
||
| 21 | */ |
||
| 22 | |||
| 23 | use ResetsPasswords; |
||
|
|
|||
| 24 | |||
| 25 | /** |
||
| 26 | * Where to redirect users after resetting their password. |
||
| 27 | * |
||
| 28 | * @var string |
||
| 29 | */ |
||
| 30 | protected $redirectTo = RouteServiceProvider::HOME; |
||
| 31 | |||
| 32 | public function showResetForm(Request $request) |
||
| 41 |