ResetPasswordController   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 22
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 2
dl 0
loc 22
ccs 0
cts 4
cp 0
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
3
namespace SET\Http\Controllers\Auth;
4
5
use Illuminate\Foundation\Auth\ResetsPasswords;
6
use SET\Http\Controllers\Controller;
7
8
class ResetPasswordController extends Controller
9
{
10
    /*
11
    |--------------------------------------------------------------------------
12
    | Password Reset Controller
13
    |--------------------------------------------------------------------------
14
    |
15
    | This controller is responsible for handling password reset requests
16
    | and uses a simple trait to include this behavior. You're free to
17
    | explore this trait and override any methods you wish to tweak.
18
    |
19
    */
20
    use ResetsPasswords;
21
22
    /**
23
     * Create a new controller instance.
24
     */
25
    public function __construct()
26
    {
27
        $this->middleware('guest');
28
    }
29
}
30