Skip to content

Commit

Permalink
as of Laravel 5.5 fire() must be renamed to handle() (#705)
Browse files Browse the repository at this point in the history
https://laravel.com/docs/5.5/upgrade

Artisan
The fire Method

Any fire methods present on your Artisan commands should be renamed to handle
  • Loading branch information
vesper8 authored and barryvdh committed Aug 29, 2017
1 parent 5b321c0 commit bce341e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Console/ClearCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public function __construct(DebugBar $debugbar)
parent::__construct();
}

public function fire()
public function handle()
{
$this->debugbar->boot();

Expand Down

2 comments on commit bce341e

@it-can
Copy link

@it-can it-can commented on bce341e Aug 31, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can you release a new version?

@barryvdh
Copy link
Owner

@barryvdh barryvdh commented on bce341e Aug 31, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes done

Please sign in to comment.