Total Complexity | 1 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | class EventServiceProvider extends ServiceProvider |
||
9 | { |
||
10 | /** |
||
11 | * The event listener mappings for the application. |
||
12 | * |
||
13 | * @var array |
||
14 | */ |
||
15 | protected $listen = [ |
||
16 | 'App\Events\ExchangeWasConfirmed' => [ |
||
17 | 'App\Listeners\SendConfirmedExchangeNotification', |
||
18 | ], |
||
19 | 'App\Events\ExchangeWasDeclined' => [ |
||
20 | 'App\Listeners\SendDeclinedExchangeNotification', |
||
21 | ], |
||
22 | ]; |
||
23 | |||
24 | /** |
||
25 | * Register any events for your application. |
||
26 | */ |
||
27 | public function boot() |
||
34 |