| 1 | <?php |
||
| 12 | class EventServiceProvider extends ServiceProvider |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * The event listener mappings for the application. |
||
| 16 | * |
||
| 17 | * @var array |
||
| 18 | */ |
||
| 19 | protected $listen = [ |
||
| 20 | 'App\Events\GameView' => [ |
||
| 21 | 'App\Listeners\GameViewListener', |
||
| 22 | ], |
||
| 23 | |||
| 24 | 'App\Events\Obyx' => [ |
||
| 25 | 'App\Listeners\ObyxListener', |
||
| 26 | ], |
||
| 27 | ]; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Register any events for your application. |
||
| 31 | * |
||
| 32 | * @return void |
||
| 33 | */ |
||
| 34 | public function boot() |
||
| 40 | } |
||
| 41 |