Skip to content

Commit 2b1273c

Browse files
NTBYKbarryvdh
authored andcommitted
Fix for Laravel 5.5 (#540)
Command fire method is now handle
1 parent 08d39c1 commit 2b1273c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/Console/GeneratorCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public function __construct(
7474
*
7575
* @return void
7676
*/
77-
public function fire()
77+
public function handle()
7878
{
7979
if (file_exists(base_path() . '/vendor/compiled.php') ||
8080
file_exists(base_path() . '/bootstrap/cache/compiled.php') ||

src/Console/MetaCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public function __construct($files, $view)
7070
*
7171
* @return void
7272
*/
73-
public function fire()
73+
public function handle()
7474
{
7575
$this->registerClassAutoloadExceptions();
7676

src/Console/ModelsCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public function __construct(Filesystem $files)
7575
*
7676
* @return void
7777
*/
78-
public function fire()
78+
public function handle()
7979
{
8080
$filename = $this->option('filename');
8181
$this->write = $this->option('write');

0 commit comments

Comments
 (0)