fixed typo in moonupdatecommand.php

This commit is contained in:
2020-05-27 00:57:13 -05:00
parent 297304e176
commit 3a994fdcde

View File

@@ -9,7 +9,7 @@ use Log;
//Jobs
use App\Jobs\Commands\Moons\FetchMoonLedgerJob;
use App\Jobs\Commands\Moons\FetchMoonObserversJob;
use App\Jobs\Commands\Moons\FetchMoonObserverJob;
//Library
use Commands\Library\CommandHelper;
@@ -79,7 +79,7 @@ class MoonsUpdateCommand extends Command
//and dispatch jobs accordingly.
foreach($characters as $charId) {
//Fetch all of the corp observers with the job dispatch
FetchMoonObserversJob::dispatch($charId);
FetchMoonObserverJob::dispatch($charId);
//Fetch all of the corp ledgers with the job dispatch
FetchMoonLedgerJob::dispatch($charId);
}