1 | <?php |
||
2 | |||
3 | namespace ProtoneMedia\LaravelVerifyNewEmail\Http; |
||
4 | |||
5 | use Illuminate\Routing\Controller; |
||
6 | |||
7 | class VerifyNewEmailController extends Controller |
||
8 | { |
||
9 | /* |
||
10 | |-------------------------------------------------------------------------- |
||
11 | | Verify New Email Controller |
||
12 | |-------------------------------------------------------------------------- |
||
13 | | |
||
14 | | This controller is responsible for verifying and activating new user email |
||
15 | | addresses and uses a simple trait to include this behavior. |
||
16 | | |
||
17 | */ |
||
18 | |||
19 | use VerifiesPendingEmails; |
||
0 ignored issues
–
show
Bug
introduced
by
![]() |
|||
20 | |||
21 | /** |
||
22 | * Create a new controller instance. |
||
23 | * |
||
24 | * @return void |
||
25 | */ |
||
26 | public function __construct() |
||
27 | { |
||
28 | $this->middleware('throttle:6,1'); |
||
29 | } |
||
30 | } |
||
31 |