Completed
Push — master ( 58b661...a53837 )
by Francesco
09:22
created

ForgotPasswordController   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 21
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 3
c 1
b 0
f 0
dl 0
loc 21
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
1
<?php
2
declare(strict_types = 1);
3
4
namespace App\Http\Controllers\Auth;
5
6
use App\Http\Controllers\Controller;
7
use Illuminate\Foundation\Auth\SendsPasswordResetEmails;
8
9
class ForgotPasswordController extends Controller
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
    public function __construct()
28
    {
29
        $this->middleware("guest");
30
    }
31
}
32