From 9e1924284abecb347d0bb672d71c305fbb38799d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emre=20Yaylag=C3=BCl?= Date: Tue, 2 Apr 2019 11:19:16 +0300 Subject: [PATCH] Handle method added Handle method alias added for fire method for L5.8 --- src/Baum/Console/InstallCommand.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/Baum/Console/InstallCommand.php b/src/Baum/Console/InstallCommand.php index 8c273b7b..523dee78 100644 --- a/src/Baum/Console/InstallCommand.php +++ b/src/Baum/Console/InstallCommand.php @@ -47,6 +47,15 @@ public function __construct(MigrationGenerator $migrator, ModelGenerator $modele $this->migrator = $migrator; $this->modeler = $modeler; } + + /** + * Fire method alias + * + * @return void + */ + public function handle() { + $this->fire(); + } /** * Execute the console command.