phpvms/app/Providers/EventServiceProvider.php
2018-02-20 22:33:09 -06:00

36 lines
679 B
PHP
Executable File

<?php
namespace App\Providers;
use App\Listeners\NotificationEventListener;
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
class EventServiceProvider extends ServiceProvider
{
/**
* The event listener mappings for the application.
*
* @var array
*/
protected $listen = [
/*'App\Events\TestEvent' => [
'App\Listeners\EventListener',
],*/
];
protected $subscribe = [
NotificationEventListener::class,
];
/**
* Register any events for your application.
*
* @return void
*/
public function boot()
{
parent::boot();
}
}