From abf04dd0ef1d9b26825893bac117d1c3c42ef6be Mon Sep 17 00:00:00 2001 From: drkthunder02 Date: Thu, 20 Dec 2018 20:53:09 -0600 Subject: [PATCH] testing pagination for wallet journals --- app/Console/Commands/corpJournal.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/Console/Commands/corpJournal.php b/app/Console/Commands/corpJournal.php index e4e162544..9237e5727 100644 --- a/app/Console/Commands/corpJournal.php +++ b/app/Console/Commands/corpJournal.php @@ -78,6 +78,8 @@ class CorpJournal extends Command private function GetJournal($charId) { $finances = new FinanceHelper(); //Get the master wallet journal for the corporation for the character - $finances->GetWalletJournal(1, $charId); + $lastPage = $finances->GetWalletJournal(1, $charId); + + return $lastPage; } }