job re-order files
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -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();
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -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();
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user