| Total Complexity | 1 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | class EventServiceProvider extends ServiceProvider |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * The event listener mappings for the application. |
||
| 15 | * |
||
| 16 | * @var array |
||
| 17 | */ |
||
| 18 | protected $listen = [ |
||
| 19 | Registered::class => [ |
||
| 20 | SendEmailVerificationNotification::class, |
||
| 21 | UserRegistered::class, |
||
| 22 | ], |
||
| 23 | ]; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Register any events for your application. |
||
| 27 | * |
||
| 28 | * @return void |
||
| 29 | */ |
||
| 30 | public function boot() |
||
| 37 |