Total Complexity | 1 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
13 | class EventServiceProvider extends ServiceProvider |
||
14 | { |
||
15 | /** |
||
16 | * The event listener mappings for the application. |
||
17 | * |
||
18 | * @var array |
||
19 | */ |
||
20 | protected $listen = [ |
||
21 | LogedUser::class => [ |
||
22 | UserLogedNotification::class, |
||
23 | |||
24 | ], |
||
25 | RegisteredUser::class => [ |
||
26 | AssignDefaultPermission::class, |
||
27 | RegisteredUserWelcomeNotification::class, |
||
28 | ], |
||
29 | ]; |
||
30 | |||
31 | /** |
||
32 | * Register any events for your application. |
||
33 | * |
||
34 | * @return void |
||
35 | */ |
||
36 | public function boot() |
||
43 |