Skip to content

Commit

Permalink
Fix GAEMigrationsServiceProvider unimplemented method
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandre-butynski committed Aug 2, 2016
1 parent b6b6705 commit 4837103
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions src/Neoxia/GAE/Migrations/GAEMigrationsServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,20 @@

class GAEMigrationsServiceProvider extends ServiceProvider
{
public function boot()
{
if (! $this->app->routesAreCached()) {
require __DIR__.'/routes.php';
}
}

/**
* Register the service provider.
*
* @return void
*/
public function boot()
public function register()
{
if (! $this->app->routesAreCached()) {
require __DIR__.'/routes.php';
}

}
}

0 comments on commit 4837103

Please sign in to comment.