From 95e58ab6d160b3ad415a7db2739362655329c6eb Mon Sep 17 00:00:00 2001 From: drkthunder02 Date: Thu, 12 Dec 2019 17:36:51 -0600 Subject: [PATCH] removed process corp journal job as it was no longer being utilized --- app/Jobs/ProcessCorpJournalJob.php | 78 ------------------------------ 1 file changed, 78 deletions(-) delete mode 100644 app/Jobs/ProcessCorpJournalJob.php diff --git a/app/Jobs/ProcessCorpJournalJob.php b/app/Jobs/ProcessCorpJournalJob.php deleted file mode 100644 index 28255f3c2..000000000 --- a/app/Jobs/ProcessCorpJournalJob.php +++ /dev/null @@ -1,78 +0,0 @@ -division = $pcj->division; - $this->charId = $pcj->charId; - $this->corpId = $pcj->corpId; - $this->page = $pcj->page; - - $this->connection = 'redis'; - } - - /** - * Execute the job. - * - * @return void - */ - public function handle() - { - //Delcare the class variable we need - $finance = new FinanceHelper(); - - $finance->GetCorpWalletJournalPage($this->division, $this->charId, $this->corpId, $this->page); - - //After the job is completed, delete the job - $this->delete(); - } - - /** - * The job failed to process - * - * @param Exception $exception - * @return void - */ - public function failed($exception) { - Log::critical($exception); - } -}