| 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 | Login::class => [ |
||
| 20 | LogUserAccess::class, |
||
| 21 | ], |
||
| 22 | TrainingAssigned::class => [ |
||
| 23 | EmailTraining::class, |
||
| 24 | ], |
||
| 25 | ]; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Register any other events for your application. |
||
| 29 | * |
||
| 30 | * @return void |
||
| 31 | */ |
||
| 32 | public function boot() |
||
| 37 | } |
||
| 38 |