phpvms/app/Providers/EventServiceProvider.php

36 lines
866 B
PHP
Raw Normal View History

2017-06-09 02:28:26 +08:00
<?php
namespace App\Providers;
use App\Events\Expenses;
use App\Events\UserStatsChanged;
use App\Listeners\AwardListener;
use App\Listeners\ExpenseListener;
use App\Listeners\FinanceEvents;
use App\Listeners\NotificationEvents;
2018-09-09 21:48:32 +08:00
use Illuminate\Auth\Events\Registered;
use Illuminate\Auth\Listeners\SendEmailVerificationNotification;
2018-02-21 12:33:09 +08:00
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
2017-06-09 02:28:26 +08:00
class EventServiceProvider extends ServiceProvider
{
protected $listen = [
2018-08-20 22:42:54 +08:00
Expenses::class => [
2018-08-27 00:40:04 +08:00
ExpenseListener::class,
],
2018-09-09 21:48:32 +08:00
Registered::class => [
SendEmailVerificationNotification::class,
],
UserStatsChanged::class => [
AwardListener::class,
],
2017-06-09 02:28:26 +08:00
];
protected $subscribe = [
FinanceEvents::class,
NotificationEvents::class,
];
2017-06-09 02:28:26 +08:00
}