1 | <?php namespace JobApis\JobsToMail\Providers; |
||
6 | class EventServiceProvider extends ServiceProvider |
||
7 | { |
||
8 | /** |
||
9 | * The event listener mappings for the application. |
||
10 | * |
||
11 | * @var array |
||
12 | */ |
||
13 | protected $listen = [ |
||
14 | 'JobApis\JobsToMail\Events\SomeEvent' => [ |
||
15 | 'JobApis\JobsToMail\Listeners\EventListener', |
||
16 | ], |
||
17 | ]; |
||
18 | |||
19 | /** |
||
20 | * Register any events for your application. |
||
21 | * |
||
22 | * @return void |
||
23 | */ |
||
24 | public function boot() |
||
30 | } |
||
31 |