MCPcopy Create free account
hub / github.com/CoderOpen/waimai / EventServiceProvider

Class EventServiceProvider

app/Providers/EventServiceProvider.php:8–35  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
7
8class 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected