diff -r 01a844d292ac -r 00e2916104fe server/src/app/Providers/EventServiceProvider.php --- a/server/src/app/Providers/EventServiceProvider.php Mon Jun 15 19:30:32 2015 +0200 +++ b/server/src/app/Providers/EventServiceProvider.php Tue Jun 23 17:01:39 2015 +0200 @@ -1,32 +1,32 @@ - [ - 'EventListener', - ], - ]; +class EventServiceProvider extends ServiceProvider +{ + /** + * The event handler mappings for the application. + * + * @var array + */ + protected $listen = [ + 'event.name' => [ + 'EventListener', + ], + ]; - /** - * Register any other events for your application. - * - * @param \Illuminate\Contracts\Events\Dispatcher $events - * @return void - */ - public function boot(DispatcherContract $events) - { - parent::boot($events); + /** + * Register any other events for your application. + * + * @param \Illuminate\Contracts\Events\Dispatcher $events + */ + public function boot(DispatcherContract $events) + { + parent::boot($events); - // - } - + // + } }