stub listeners property

This commit is contained in:
Taylor Otwell
2017-07-06 12:08:40 -05:00
parent 3310063b59
commit 4611d2bf31

View File

@@ -8,14 +8,12 @@ use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvi
class EventServiceProvider extends ServiceProvider class EventServiceProvider extends ServiceProvider
{ {
/** /**
* The event listener mappings for the application. * The event listeners for the application.
* *
* @var array * @var array
*/ */
protected $listen = [ protected $listeners = [
'App\Events\Event' => [ //
'App\Listeners\EventListener',
],
]; ];
/** /**