phpvms/app/Providers/EventServiceProvider.php

40 lines
769 B
PHP
Raw Normal View History

2017-06-09 02:28:26 +08:00
<?php
namespace App\Providers;
use App\Listeners\FinanceEvents;
use App\Listeners\NotificationEvents;
2018-02-21 12:33:09 +08:00
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
use App\Listeners\ExpenseListener;
use App\Events\Expenses;
2017-06-09 02:28:26 +08:00
2017-06-09 02:28:26 +08:00
class EventServiceProvider extends ServiceProvider
{
/**
* The event listener mappings for the application.
*
* @var array
*/
protected $listen = [
Expenses::class => [
ExpenseListener::class
],
2017-06-09 02:28:26 +08:00
];
protected $subscribe = [
FinanceEvents::class,
NotificationEvents::class,
];
2017-06-09 02:28:26 +08:00
/**
* Register any events for your application.
*
* @return void
*/
public function boot()
{
parent::boot();
}
}