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