From d08e6f5f8f331c544b5c315db932ea795f2c0a7b Mon Sep 17 00:00:00 2001 From: drkthunder02 Date: Fri, 15 May 2020 02:57:51 -0500 Subject: [PATCH] created the command for get eve regions for artisan --- .../{GetEveRegions.php => GetEveRegionsCommand.php} | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) rename app/Console/Commands/Eve/{GetEveRegions.php => GetEveRegionsCommand.php} (77%) diff --git a/app/Console/Commands/Eve/GetEveRegions.php b/app/Console/Commands/Eve/GetEveRegionsCommand.php similarity index 77% rename from app/Console/Commands/Eve/GetEveRegions.php rename to app/Console/Commands/Eve/GetEveRegionsCommand.php index 63830cdf6..dd6c50cfb 100644 --- a/app/Console/Commands/Eve/GetEveRegions.php +++ b/app/Console/Commands/Eve/GetEveRegionsCommand.php @@ -2,9 +2,16 @@ namespace App\Console\Commands\Eve; +//Internal Library use Illuminate\Console\Command; -class GetEveRegions extends Command +//Library +use Commands\Library\CommandHelper; + +//Job +use App\Jobs\Commands\Eve\GetEveRegionsJob; + +class GetEveRegionsCommand extends Command { /** * The name and signature of the console command. @@ -37,6 +44,6 @@ class GetEveRegions extends Command */ public function handle() { - // + GetEveRegionsJob::dispatch(); } }