1 | <?php |
||
8 | class EmailLogEventServiceProvider extends EventServiceProvider |
||
9 | { |
||
10 | /** |
||
11 | * The event listener mappings for the application. |
||
12 | * |
||
13 | * @var array |
||
14 | */ |
||
15 | protected $listen = [ |
||
16 | MessageSending::class => [ |
||
17 | EmailLogEvent::class, |
||
18 | ], |
||
19 | ]; |
||
20 | |||
21 | /** |
||
22 | * Register any events for your application. |
||
23 | * |
||
24 | * @return void |
||
25 | */ |
||
26 | public function boot() |
||
30 | } |
||
31 |