Total Complexity | 1 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
9 | class AdmineticEventServiceProvider extends ServiceProvider |
||
10 | { |
||
11 | protected $listen = [ |
||
12 | UserHasBeenRegistered::class => [ |
||
13 | SendAuthenticationDetailNotification::class, |
||
14 | ], |
||
15 | ]; |
||
16 | |||
17 | /** |
||
18 | * Register any events for your application. |
||
19 | * |
||
20 | * @return void |
||
21 | */ |
||
22 | public function boot() |
||
27 |