Files
spa-api/app/Providers/EventServiceProvider.php

33 lines
731 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
2015-02-22 20:47:03 -06:00
class EventServiceProvider extends ServiceProvider
{
2014-09-30 21:01:17 -05:00
2015-02-22 20:47:03 -06:00
/**
* The event listener mappings for the application.
*
* @var array
*/
protected $listen = [
'App\Events\SomeEvent' => [
'App\Listeners\EventListener',
],
];
2014-10-14 20:07:12 -05:00
2015-02-22 20:47:03 -06:00
/**
* Register any other events for your application.
*
* @param \Illuminate\Contracts\Events\Dispatcher $events
* @return void
*/
public function boot(DispatcherContract $events)
{
parent::boot($events);
2015-01-22 15:28:02 -06:00
2015-02-22 20:47:03 -06:00
//
}
2014-09-30 21:01:17 -05:00
}