| 1 | <?php |
||
| 11 | class DuckFunkEventServiceProvider extends ServiceProvider |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * The event handler mappings for the application. |
||
| 15 | * |
||
| 16 | * @var array |
||
| 17 | */ |
||
| 18 | protected $listen = [ |
||
| 19 | UpdateAvatarEvent::class => [ |
||
| 20 | UserUpdate::class, |
||
| 21 | ], |
||
| 22 | SocialiteWasCalled::class => [ |
||
| 23 | FacebookLoginCalled::class, |
||
| 24 | ], |
||
| 25 | ]; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Register any other events for your application. |
||
| 29 | * |
||
| 30 | * @return void |
||
| 31 | */ |
||
| 32 | public function boot() |
||
| 36 | } |
||
| 37 |