From ae601c3f66b0bc6aa77f34167471247dc0609a14 Mon Sep 17 00:00:00 2001 From: Roly Rudy Gutierrez Pinto Date: Fri, 17 Jul 2020 12:23:26 -0400 Subject: [PATCH] DRT-166 Create a method to generate the report using a queue job --- app/Console/Commands/WorkCommand.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Console/Commands/WorkCommand.php b/app/Console/Commands/WorkCommand.php index 1e51a582e..c05d853f1 100644 --- a/app/Console/Commands/WorkCommand.php +++ b/app/Console/Commands/WorkCommand.php @@ -44,7 +44,7 @@ class WorkCommand extends BaseWorkCommand } /** - * This call the 'pluginClassLoader.json' file, is required by artisan for dynamically + * This call the 'classLoaderForCommands.json' file, is required by artisan for dynamically * access to plugin classes. */ private function loadAdditionalClassesAtRuntime(): void @@ -62,7 +62,7 @@ class WorkCommand extends BaseWorkCommand continue; } //this file is required by artisan for dynamically access to class - $classloader = $path . PATH_SEP . 'pluginClassLoader.json'; + $classloader = $path . PATH_SEP . 'classLoaderForCommands.json'; if (!file_exists($classloader)) { continue; }