BookStack/app/Providers/EventServiceProvider.php

46 lines
1.2 KiB
PHP
Raw Normal View History

2015-07-12 19:01:42 +00:00
<?php
namespace BookStack\Providers;
2015-07-12 19:01:42 +00:00
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
use SocialiteProviders\Manager\SocialiteWasCalled;
2015-07-12 19:01:42 +00:00
class EventServiceProvider extends ServiceProvider
{
/**
* The event listener mappings for the application.
*
* @var array<class-string, array<int, class-string>>
2015-07-12 19:01:42 +00:00
*/
protected $listen = [
SocialiteWasCalled::class => [
'SocialiteProviders\Slack\SlackExtendSocialite@handle',
'SocialiteProviders\Azure\AzureExtendSocialite@handle',
2017-11-26 15:41:29 +00:00
'SocialiteProviders\Okta\OktaExtendSocialite@handle',
'SocialiteProviders\GitLab\GitLabExtendSocialite@handle',
2018-01-29 08:28:56 +00:00
'SocialiteProviders\Twitch\TwitchExtendSocialite@handle',
'SocialiteProviders\Discord\DiscordExtendSocialite@handle',
2015-07-12 19:01:42 +00:00
],
];
/**
* Register any events for your application.
2015-07-12 19:01:42 +00:00
*
* @return void
*/
public function boot()
2015-07-12 19:01:42 +00:00
{
//
}
/**
* Determine if events and listeners should be automatically discovered.
*
* @return bool
*/
public function shouldDiscoverEvents()
{
return false;
2015-07-12 19:01:42 +00:00
}
}