Skip to content

Commit

Permalink
Merge pull request laravel#3228 from JoeForks/fix/event-sp
Browse files Browse the repository at this point in the history
[5.0] Fix app event service provider contract
  • Loading branch information
taylorotwell committed Jan 22, 2015
2 parents 0089439 + a348910 commit c99d4e3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/Providers/EventServiceProvider.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<?php namespace App\Providers;

use Illuminate\Contracts\Events\Dispatcher as DispatcherContract;
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;

class EventServiceProvider extends ServiceProvider {
Expand All @@ -18,9 +19,10 @@ class EventServiceProvider extends ServiceProvider {
/**
* Register any other events for your application.
*
* @param \Illuminate\Contracts\Events\Dispatcher $events
* @return void
*/
public function boot()
public function boot(DispatcherContract $events)
{
//
}
Expand Down

0 comments on commit c99d4e3

Please sign in to comment.