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