laravel-learn-bbs/app/Providers/EventServiceProvider.php

40 lines
919 B
PHP
Raw Normal View History

2017-12-24 14:17:18 +00:00
<?php
namespace App\Providers;
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
2018-06-03 13:09:33 +00:00
use SocialiteProviders\Manager\SocialiteWasCalled;
2017-12-24 14:17:18 +00:00
class EventServiceProvider extends ServiceProvider
{
/**
* The event listener mappings for the application.
*
* @var array
*/
protected $listen = [
'App\Events\Event' => [
'App\Listeners\EventListener',
],
2018-06-03 13:09:33 +00:00
SocialiteWasCalled::class => [
// add your listeners (aka providers) here
'SocialiteProviders\Weixin\WeixinExtendSocialite@handle'
],
2018-06-16 02:18:41 +00:00
'eloquent.created: Illuminate\Notifications\DatabaseNotification' => [
'App\Listeners\PushNotification',
],
2017-12-24 14:17:18 +00:00
];
/**
* Register any events for your application.
*
* @return void
*/
public function boot()
{
parent::boot();
//
}
}