process wallet journal job model removed

This commit is contained in:
2020-05-10 23:35:04 -05:00
parent 806b872465
commit da39f990a5
5 changed files with 6 additions and 79 deletions

View File

@@ -40,10 +40,10 @@ class ProcessWalletJournalJob implements ShouldQueue
*
* @return void
*/
public function __construct(JobProcessWalletJournal $pwj) {
$this->division = $pwj->division;
$this->charId = $pwj->charId;
$this->page = $pwj->page;
public function __construct($division, $charId, $page) {
$this->division = $division;
$this->charId = $charId;
$this->page = $page;
$this->connection = 'redis';
}