| Total Complexity | 1 |
| Total Lines | 32 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 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 resent if the user did not 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 = '/'; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Create a new controller instance. |
||
| 33 | * |
||
| 34 | * @return void |
||
| 35 | */ |
||
| 36 | public function __construct() |
||
| 41 | } |
||
| 42 | } |