From 28f0f5aeb2fab38345d17d755cee8977cc5256bf Mon Sep 17 00:00:00 2001 From: ramcda Date: Thu, 20 Aug 2020 20:10:43 -0700 Subject: [PATCH] func names changed in laravel 6+ --- src/Database/Migration/MigrationServiceProvider.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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',