Total Complexity | 1 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class EventServiceProvider extends ServiceProvider |
||
14 | { |
||
15 | |||
16 | protected $listen = [ |
||
17 | ForgotPassword::class => [ |
||
18 | SendResetLink::class |
||
19 | ], |
||
20 | EmailVerification::class => [ |
||
21 | SendEmailVerificationNotification::class |
||
22 | ], |
||
23 | TwoFactorLogin::class => [ |
||
24 | ], |
||
25 | SocialiteLogin::class => [ |
||
26 | ], |
||
27 | ]; |
||
28 | |||
29 | public function boot() |
||
34 |