Total Complexity | 1 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class VerificationController extends Controller |
||
8 | { |
||
9 | /* |
||
10 | |-------------------------------------------------------------------------- |
||
11 | | Email Verification Controller |
||
12 | |-------------------------------------------------------------------------- |
||
13 | | |
||
14 | | This controller is responsible for handling email verification for any |
||
15 | | user that recently registered with the application. Emails may also |
||
16 | | be re-sent if the user didn't receive the original email message. |
||
17 | | |
||
18 | */ |
||
19 | |||
20 | use VerifiesEmails; |
||
21 | |||
22 | /** |
||
23 | * Where to redirect users after verification. |
||
24 | * |
||
25 | * @var string |
||
26 | */ |
||
27 | protected $redirectTo = '/home'; |
||
28 | |||
29 | /** |
||
30 | * Create a new controller instance. |
||
31 | * |
||
32 | * @return void |
||
33 | */ |
||
34 | public function __construct() |
||
40 |