Commit a348910c authored by Joseph Cohen's avatar Joseph Cohen

Fix app event service provider contract

parent 0089439a
<?php namespace App\Providers; <?php namespace App\Providers;
use Illuminate\Contracts\Events\Dispatcher as DispatcherContract;
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider; use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
class EventServiceProvider extends ServiceProvider { class EventServiceProvider extends ServiceProvider {
...@@ -18,9 +19,10 @@ class EventServiceProvider extends ServiceProvider { ...@@ -18,9 +19,10 @@ class EventServiceProvider extends ServiceProvider {
/** /**
* Register any other events for your application. * Register any other events for your application.
* *
* @param \Illuminate\Contracts\Events\Dispatcher $events
* @return void * @return void
*/ */
public function boot() public function boot(DispatcherContract $events)
{ {
// //
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment