Total Complexity | 1 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
29 | class ResetPasswordController extends AbstractController |
||
30 | { |
||
31 | use ResetsPasswords; |
||
32 | |||
33 | /** |
||
34 | * Where to redirect users after resetting their password. |
||
35 | * |
||
36 | * @var string |
||
37 | */ |
||
38 | protected $redirectTo = '/home'; |
||
39 | |||
40 | /** |
||
41 | * Create a new controller instance. |
||
42 | * |
||
43 | * @return void |
||
44 | */ |
||
45 | public function __construct() |
||
52 |