Skip to content

Commit

Permalink
Fix wrong override of the kernel
Browse files Browse the repository at this point in the history
  • Loading branch information
mfrancoisbbs committed Jul 6, 2017
1 parent 2f1e07b commit 3021bbb
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/Distilleries/Expendable/Fondation/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@


use Distilleries\Expendable\ExpendableRoutingServiceProvider;
use Illuminate\Events\EventServiceProvider;
use Illuminate\Foundation\Application as BaseApplication;

class Application extends BaseApplication
Expand All @@ -18,7 +17,7 @@ class Application extends BaseApplication
*/
protected function registerBaseServiceProviders()
{
$this->register(new EventServiceProvider($this));
parent::registerBaseServiceProviders();
$this->register(new ExpendableRoutingServiceProvider($this));
}

Expand Down

0 comments on commit 3021bbb

Please sign in to comment.