DRT-166 Create a method to generate the report using a queue job

This commit is contained in:
Roly Rudy Gutierrez Pinto
2020-07-17 12:23:26 -04:00
parent 717118fd7b
commit ae601c3f66

View File

@@ -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;
}