Files
i-love/app/Providers/EventServiceProvider.php

33 lines
626 B
PHP
Raw Normal View History

2014-09-30 21:01:17 -05:00
<?php namespace App\Providers;
use Illuminate\Contracts\Events\Dispatcher as DispatcherContract;
2014-09-30 21:13:58 -05:00
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
2014-09-30 21:01:17 -05:00
class EventServiceProvider extends ServiceProvider {
2014-10-14 20:07:12 -05:00
/**
* The event handler mappings for the application.
2014-10-14 20:07:12 -05:00
*
* @var array
*/
protected $listen = [
'event.name' => [
'EventListener',
],
2014-10-14 20:07:12 -05:00
];
2015-01-22 15:28:02 -06:00
/**
* Register any other events for your application.
*
* @param \Illuminate\Contracts\Events\Dispatcher $events
2015-01-22 15:28:02 -06:00
* @return void
*/
public function boot(DispatcherContract $events)
2015-01-22 15:28:02 -06:00
{
2015-01-22 17:15:34 -06:00
parent::boot($events);
2015-01-22 15:28:02 -06:00
//
}
2014-09-30 21:01:17 -05:00
}