Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Commands/InstallCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class InstallCommand extends Command
*
* @return mixed
*/
public function fire()
public function handle()
{
$this->info('Checking Database Schema');

Expand Down
2 changes: 1 addition & 1 deletion src/Commands/RunMigrationsCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
2 changes: 1 addition & 1 deletion src/Commands/SchemaCheckCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -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!');
Expand Down