my changes

This commit is contained in:
Arno Kaimbacher 2018-08-06 14:30:51 +02:00
parent 28301e4312
commit 8dc1f1b048
263 changed files with 36882 additions and 4453 deletions

View file

@ -11,10 +11,10 @@ class EventServiceProvider extends ServiceProvider {
* @var array
*/
protected $listen = [
'event.name' => [
'EventListener',
],
];
'App\Events\Event' => [
'App\Listeners\EventListener',
],
];
/**
* Register any other events for your application.
@ -22,9 +22,9 @@ class EventServiceProvider extends ServiceProvider {
* @param \Illuminate\Contracts\Events\Dispatcher $events
* @return void
*/
public function boot(DispatcherContract $events)
public function boot()
{
parent::boot($events);
parent::boot();
//
}