Skip to content
This repository has been archived by the owner on Mar 16, 2024. It is now read-only.

Commit

Permalink
compatible with laravel 5.5 (#8)
Browse files Browse the repository at this point in the history
* compatible with laravel 5.5

* up
  • Loading branch information
emtudo authored and vinicius73 committed Sep 9, 2017
1 parent 63bc456 commit 89bf495
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/Console/BaseCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,8 @@
class BaseCommand extends Command
{
// Empty Base Command.
public function handle()
{
return $this->fire();
}
}
5 changes: 5 additions & 0 deletions src/Console/ResetCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,11 @@ public function __construct(Migrator $migrator)
$this->migrator = $migrator;
}

public function handle()
{
return $this->fire();
}

/**
* Execute the console command.
*
Expand Down
5 changes: 5 additions & 0 deletions src/Console/RollbackCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,11 @@ public function fire()
}
}

public function handle()
{
return $this->fire();
}

/**
* Get the console command options.
*
Expand Down

0 comments on commit 89bf495

Please sign in to comment.