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