Total Complexity | 2 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
9 | class ResetPasswordController extends Controller |
||
10 | { |
||
11 | /* |
||
12 | |-------------------------------------------------------------------------- |
||
13 | | Password Reset Controller |
||
14 | |-------------------------------------------------------------------------- |
||
15 | | |
||
16 | | This controller is responsible for handling password reset requests |
||
17 | | and uses a simple trait to include this behavior. You're free to |
||
18 | | explore this trait and override any methods you wish to tweak. |
||
19 | | |
||
20 | */ |
||
21 | |||
22 | use ResetsPasswords; |
||
|
|||
23 | |||
24 | protected $redirectTo = '/'; |
||
25 | |||
26 | /** |
||
27 | * Create a new controller instance. |
||
28 | * |
||
29 | * @return void |
||
30 | */ |
||
31 | public function __construct() |
||
32 | { |
||
33 | $this->middleware('guest'); |
||
34 | } |
||
35 | |||
36 | public function showResetForm(Request $request, $token = null) |
||
39 | } |
||
40 | } |
||
41 |