From 429f079cf5098d0005c0eb5d89c9ac77dcb50567 Mon Sep 17 00:00:00 2001 From: Christopher Di Carlo Date: Fri, 18 Oct 2019 22:05:04 -0400 Subject: [PATCH] Update fire method reference to handle due to Laravel 5.5 update (#3003) --- app/Console/Commands/MakeModuleSettings.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Console/Commands/MakeModuleSettings.php b/app/Console/Commands/MakeModuleSettings.php index 199af1514244..d4249c1c2a4a 100644 --- a/app/Console/Commands/MakeModuleSettings.php +++ b/app/Console/Commands/MakeModuleSettings.php @@ -56,7 +56,7 @@ class MakeModuleSettings extends GeneratorCommand $this->info('Creating settings view template for ' . $this->getModuleName()); $module = $this->laravel['modules']->findOrFail($this->getModuleName()); - parent::fire(); + parent::handle(); // add default routes if option specified $route = $this->option('route');