job re-order files

This commit is contained in:
2019-05-05 01:28:26 -05:00
parent 1f43d039e0
commit 435fff6224
3 changed files with 9 additions and 9 deletions
+3 -3
View File
@@ -63,14 +63,14 @@ class ProcessWalletJournalJob implements ShouldQueue
$finance->GetWalletJournalPage($this->division, $this->charId, $this->page);
//After the job is completed, delete the job
$this->delete();
//If the job is completed, mark down the completed job in the status table for jobs
$job = new JobStatus;
$job->job_name = $this->getName();
$job->complete = true;
$job->save();
//After the job is completed, delete the job
$this->delete();
}
/**
+3 -3
View File
@@ -61,14 +61,14 @@ class ProcessWalletTransactionJob implements ShouldQueue
$finance->GetWalletTransaction($this->division, $this->charId);
//After the job is completed, delete the job
$this->delete();
//If the job is completed, mark down the completed job in the status table for jobs
$job = new JobStatus;
$job->job_name = $this->getName();
$job->complete = true;
$job->save();
//After the job is completed, delete the job
$this->delete();
}
/**
+3 -3
View File
@@ -99,14 +99,14 @@ class SendEveMailJob implements ShouldQueue
} catch(RequestFailedException $e) {
return null;
}
$this->delete();
//If the job is completed, mark down the completed job in the status table for jobs
$job = new JobStatus;
$job->job_name = $this->getName();
$job->complete = true;
$job->save();
$this->delete();
}
/**