Total Complexity | 2 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Changes | 3 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
9 | class MailEventServiceProvider extends ServiceProvider |
||
10 | { |
||
11 | protected $listen = [ |
||
12 | MessageSent::class => [ |
||
13 | MailSentListener::class, |
||
14 | ], |
||
15 | ]; |
||
16 | |||
17 | /** |
||
18 | * Bootstrap the application services. |
||
19 | */ |
||
20 | public function boot() |
||
23 | } |
||
24 | |||
25 | /** |
||
26 | * Register the application services. |
||
27 | */ |
||
28 | public function register() |
||
34 |