Skip to content

Commit

Permalink
Fix console commands in favor of laravel 5.5 support
Browse files Browse the repository at this point in the history
  • Loading branch information
endi committed Aug 18, 2017
1 parent 880a50c commit 2e514e2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Terranet/Options/Console/OptionMakeCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class OptionMakeCommand extends Command

protected $description = 'Insert new option';

public function fire()
public function handle()
{
$name = $this->argument('name');
$value = $this->argument('value') ? : '';
Expand Down
2 changes: 1 addition & 1 deletion src/Terranet/Options/Console/OptionRemoveCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class OptionRemoveCommand extends Command

protected $description = 'Remove an option';

public function fire()
public function handle()
{
$name = $this->argument('name');

Expand Down
2 changes: 1 addition & 1 deletion src/Terranet/Options/Console/OptionsTableCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public function __construct(Filesystem $files, Composer $composer)
*
* @return void
*/
public function fire()
public function handle()
{
$fullPath = $this->createBaseMigration();

Expand Down

0 comments on commit 2e514e2

Please sign in to comment.