From bce341e3194bbeffa60ac782d645067557f5075e Mon Sep 17 00:00:00 2001 From: C-Bass Date: Tue, 29 Aug 2017 04:54:25 -0400 Subject: [PATCH] as of Laravel 5.5 fire() must be renamed to handle() (#705) https://laravel.com/docs/5.5/upgrade Artisan The fire Method Any fire methods present on your Artisan commands should be renamed to handle --- src/Console/ClearCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Console/ClearCommand.php b/src/Console/ClearCommand.php index 8ca66032..64c7dd28 100644 --- a/src/Console/ClearCommand.php +++ b/src/Console/ClearCommand.php @@ -16,7 +16,7 @@ public function __construct(DebugBar $debugbar) parent::__construct(); } - public function fire() + public function handle() { $this->debugbar->boot();