Completed
Push — master ( 248e12...0fb364 )
by ARCANEDEV
03:19
created

PasswordController::getEmail()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
ccs 0
cts 4
cp 0
rs 10
cc 1
eloc 2
nc 1
nop 0
crap 2
1
<?php namespace Arcanesoft\Auth\Http\Controllers\Front;
2
3
use Arcanesoft\Auth\Bases\Controller;
4
use Illuminate\Foundation\Auth\ResetsPasswords;
5
6
/**
7
 * Class     PasswordController
8
 *
9
 * @package  Arcanesoft\Auth\Http\Controllers\Front
10
 * @author   ARCANEDEV <[email protected]>
11
 */
12
class PasswordController extends Controller
13
{
14
    /* ------------------------------------------------------------------------------------------------
15
     |  Traits
16
     | ------------------------------------------------------------------------------------------------
17
     */
18
    use ResetsPasswords;
19
20
    /* ------------------------------------------------------------------------------------------------
21
     |  Constructor
22
     | ------------------------------------------------------------------------------------------------
23
     */
24
    /**
25
     * Create a new password controller instance.
26
     */
27
    public function __construct()
28
    {
29
        parent::__construct();
30
31
        $this->middleware('guest');
32
    }
33
34
    /* ------------------------------------------------------------------------------------------------
35
     |  Main Functions
36
     | ------------------------------------------------------------------------------------------------
37
     */
38
    /**
39
     * Display the form to request a password reset link.
40
     *
41
     * @return \Illuminate\Http\Response
42
     */
43
    public function getEmail()
44
    {
45
        return view('auth::public.reset');
46
    }
47
}
48