| Total Complexity | 1 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | class EventServiceProvider extends ServiceProvider |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * The event listener mappings for the application. |
||
| 12 | * |
||
| 13 | * @var array |
||
| 14 | */ |
||
| 15 | protected $listen = [ |
||
| 16 | 'App\Events\SomeEvent' => [ |
||
| 17 | 'App\Listeners\EventListener', |
||
| 18 | ], |
||
| 19 | \SocialiteProviders\Manager\SocialiteWasCalled::class => [ |
||
| 20 | 'SocialiteProviders\YouTube\YouTubeExtendSocialite@handle', |
||
| 21 | 'SocialiteProviders\Twitch\TwitchExtendSocialite@handle', |
||
| 22 | 'SocialiteProviders\Instagram\InstagramExtendSocialite@handle', |
||
| 23 | 'SocialiteProviders\ThirtySevenSignals\ThirtySevenSignalsExtendSocialite@handle', |
||
| 24 | ], |
||
| 25 | ]; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Register any events for your application. |
||
| 29 | * |
||
| 30 | * @return void |
||
| 31 | */ |
||
| 32 | public function boot() |
||
| 39 |