| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-18 00:56:55 +08:00
										 |  |  | namespace BookStack\App\Providers; | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider; | 
					
						
							| 
									
										
										
										
											2017-02-04 19:01:49 +08:00
										 |  |  | use SocialiteProviders\Manager\SocialiteWasCalled; | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | class EventServiceProvider extends ServiceProvider | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * The event listener mappings for the application. | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2022-09-27 09:48:05 +08:00
										 |  |  |      * @var array<class-string, array<int, class-string>> | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  |      */ | 
					
						
							|  |  |  |     protected $listen = [ | 
					
						
							| 
									
										
										
										
											2017-02-04 19:01:49 +08:00
										 |  |  |         SocialiteWasCalled::class => [ | 
					
						
							|  |  |  |             'SocialiteProviders\Slack\SlackExtendSocialite@handle', | 
					
						
							| 
									
										
										
										
											2017-10-01 20:19:17 +08:00
										 |  |  |             'SocialiteProviders\Azure\AzureExtendSocialite@handle', | 
					
						
							| 
									
										
										
										
											2017-11-26 23:41:29 +08:00
										 |  |  |             'SocialiteProviders\Okta\OktaExtendSocialite@handle', | 
					
						
							| 
									
										
										
										
											2018-01-31 23:02:07 +08:00
										 |  |  |             'SocialiteProviders\GitLab\GitLabExtendSocialite@handle', | 
					
						
							| 
									
										
										
										
											2018-01-29 16:28:56 +08:00
										 |  |  |             'SocialiteProviders\Twitch\TwitchExtendSocialite@handle', | 
					
						
							| 
									
										
										
										
											2018-06-28 15:01:36 +08:00
										 |  |  |             'SocialiteProviders\Discord\DiscordExtendSocialite@handle', | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  |         ], | 
					
						
							|  |  |  |     ]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2023-02-07 00:58:29 +08:00
										 |  |  |      * Register any events for your application. | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  |      * | 
					
						
							|  |  |  |      * @return void | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2016-09-18 01:22:04 +08:00
										 |  |  |     public function boot() | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2023-02-07 00:58:29 +08:00
										 |  |  |         //
 | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Determine if events and listeners should be automatically discovered. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return bool | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function shouldDiscoverEvents() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return false; | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | } |