Passed
Push — master ( 323164...3428d8 )
by John
05:46
created

VerificationController   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 42
Duplicated Lines 0 %

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A show() 0 8 2
A __construct() 0 5 1
1
<?php
2
3
namespace App\Http\Controllers\Auth;
4
5
use App\Http\Controllers\Controller;
6
use Illuminate\Foundation\Auth\VerifiesEmails;
7
use Illuminate\Http\Request;
8
9
class VerificationController extends Controller
10
{
11
    /*
12
    |--------------------------------------------------------------------------
13
    | Email Verification Controller
14
    |--------------------------------------------------------------------------
15
    |
16
    | This controller is responsible for handling email verification for any
17
    | user that recently registered with the application. Emails may also
18
    | be re-sent if the user didn't receive the original email message.
19
    |
20
    */
21
22
    use VerifiesEmails;
23
24
    /**
25
     * Where to redirect users after verification.
26
     *
27
     * @var string
28
     */
29
    protected $redirectTo='/account/settings';
30
31
    /**
32
     * Create a new controller instance.
33
     *
34
     * @return void
35
     */
36
    public function __construct()
37
    {
38
        $this->middleware('auth');
39
        $this->middleware('signed')->only('verify');
40
        $this->middleware('throttle:6,1')->only('verify', 'resend');
41
    }
42
43
    public function show(Request $request)
44
    {
45
        return $request->user()->hasVerifiedEmail()
46
                        ? redirect($this->redirectPath())
47
                        : view('auth.verify',[
48
                            'page_title'=>"Verify Email",
49
                            'site_title'=>config("app.name"),
50
                            'navigation' => "Account"
51
                        ]);
52
    }
53
}
54