phpvms/app/Providers/EventServiceProvider.php
2017-12-30 20:39:17 -06:00

35 lines
643 B
PHP
Executable File

<?php
namespace App\Providers;
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 = [
'App\Listeners\NotificationEventListener',
];
/**
* Register any events for your application.
*
* @return void
*/
public function boot()
{
parent::boot();
}
}