diff --git a/src/Database/Migration/MigrationServiceProvider.php b/src/Database/Migration/MigrationServiceProvider.php index 8c51d6deb..0d5ddeccd 100644 --- a/src/Database/Migration/MigrationServiceProvider.php +++ b/src/Database/Migration/MigrationServiceProvider.php @@ -56,7 +56,7 @@ function ($app) { * * @return void */ - protected function registerMakeCommand() + protected function registerMigrateMakeCommand() { $this->registerCreator(); @@ -95,7 +95,7 @@ function ($app) { * * @return void */ - protected function registerResetCommand() + protected function registerMigrateResetCommand() { $this->app->singleton( 'command.migrate.reset', @@ -110,7 +110,7 @@ function ($app) { * * @return void */ - protected function registerRefreshCommand() + protected function registerMigrateRefreshCommand() { $this->app->singleton( 'command.migrate.refresh', @@ -125,7 +125,7 @@ function () { * * @return void */ - protected function registerRollbackCommand() + protected function registerMigrateRollbackCommand() { $this->app->singleton( 'command.migrate.rollback',