3 namespace BookStack\Providers;
5 use Illuminate\Contracts\Events\Dispatcher as DispatcherContract;
6 use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
7 use SocialiteProviders\Manager\SocialiteWasCalled;
9 class EventServiceProvider extends ServiceProvider
12 * The event listener mappings for the application.
17 SocialiteWasCalled::class => [
18 'SocialiteProviders\Slack\SlackExtendSocialite@handle',
19 'SocialiteProviders\Azure\AzureExtendSocialite@handle',
20 'SocialiteProviders\Okta\OktaExtendSocialite@handle',
21 'SocialiteProviders\GitLab\GitLabExtendSocialite@handle',
26 * Register any other events for your application.
30 public function boot()