change default

This commit is contained in:
Taylor Otwell
2017-07-11 16:53:04 -05:00
parent d0ce75926f
commit d75800052d

View File

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