diff --git a/src/Commands/InstallCommand.php b/src/Commands/InstallCommand.php index 1676d595..f5dbb013 100644 --- a/src/Commands/InstallCommand.php +++ b/src/Commands/InstallCommand.php @@ -28,7 +28,7 @@ class InstallCommand extends Command * * @return mixed */ - public function fire() + public function handle() { $this->info('Checking Database Schema'); diff --git a/src/Commands/RunMigrationsCommand.php b/src/Commands/RunMigrationsCommand.php index 1877c5fa..da50a0ff 100644 --- a/src/Commands/RunMigrationsCommand.php +++ b/src/Commands/RunMigrationsCommand.php @@ -26,7 +26,7 @@ class RunMigrationsCommand extends Command /** * Execute the command. */ - public function fire() + public function handle() { $this->call('migrate', [ '--path' => 'vendor/stevebauman/inventory/src/migrations', diff --git a/src/Commands/SchemaCheckCommand.php b/src/Commands/SchemaCheckCommand.php index 930ed6f4..fcabd69c 100644 --- a/src/Commands/SchemaCheckCommand.php +++ b/src/Commands/SchemaCheckCommand.php @@ -63,7 +63,7 @@ class SchemaCheckCommand extends Command * @throws DatabaseTableReservedException * @throws DependencyNotFoundException */ - public function fire() + public function handle() { if ($this->checkDependencies()) { $this->info('Schema dependencies are all good!');