stub listeners property

This commit is contained in:
Taylor Otwell 2017-07-06 12:08:40 -05:00
parent 3310063b59
commit 4611d2bf31
1 changed files with 3 additions and 5 deletions

View File

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