diff --git a/app/Console/Commands/GetStructures.php b/app/Console/Commands/GetStructures.php index ed00b5d73..1c80e82bc 100644 --- a/app/Console/Commands/GetStructures.php +++ b/app/Console/Commands/GetStructures.php @@ -3,12 +3,8 @@ namespace App\Console\Commands; use Illuminate\Console\Command; -use DB; use Log; -//Job -use App\Jobs\ProcessStructureJob; - //Library use App\Library\Structures\StructureHelper; use App\Library\Esi\Esi; @@ -18,6 +14,9 @@ use Seat\Eseye\Containers\EsiAuthentication; use Seat\Eseye\Eseye; use Commands\Library\CommandHelper; +//Job +use App\Jobs\ProcessStructureJob; + //Models use App\Models\Jobs\JobProcessStructure; use App\Models\Esi\EsiScope; @@ -124,7 +123,6 @@ class GetStructuresCommand extends Command $totalPages = $structures->pages; } - dd($structures); //For each structure we retrieve dispatch a job to process it. foreach($structures as $structure) { $job = new JobProcessStructure;