| 6 | use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider; |
| 7 | |
| 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\Event' => [ |
| 17 | 'App\Listeners\EventListener', |
| 18 | ], |
| 19 | 'SocialiteProviders\Manager\SocialiteWasCalled' => [ |
| 20 | 'SocialiteProviders\QQ\QqExtendSocialite@handle' |
| 21 | ], |
| 22 | ]; |
| 23 | |
| 24 | /** |
| 25 | * Register any events for your application. |
| 26 | * |
| 27 | * @return void |
| 28 | */ |
| 29 | public function boot() |
| 30 | { |
| 31 | parent::boot(); |
| 32 | |
| 33 | // |
| 34 | } |
| 35 | } |
nothing calls this directly
no outgoing calls
no test coverage detected