Skip to content

Commit bce341e

Browse files
vesper8barryvdh
authored andcommitted
as of Laravel 5.5 fire() must be renamed to handle() (barryvdh#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
1 parent 5b321c0 commit bce341e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Console/ClearCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public function __construct(DebugBar $debugbar)
1616
parent::__construct();
1717
}
1818

19-
public function fire()
19+
public function handle()
2020
{
2121
$this->debugbar->boot();
2222

0 commit comments

Comments
 (0)