From 5c07c2a4e0c11ee621ab5781ee240c63bfd85e27 Mon Sep 17 00:00:00 2001 From: drkthunder02 Date: Thu, 22 Nov 2018 20:40:23 -0600 Subject: [PATCH] testing --- 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 357fd3a51..ef3176c3c 100644 --- a/app/Console/Commands/corpJournal.php +++ b/app/Console/Commands/corpJournal.php @@ -54,7 +54,9 @@ class CorpJournal extends Command $characters = DB::table('EsiScopes')->where('scope', 'esi-wallet.read_corporation_wallets.v1')->get(); //For each structure let's attemp to gather the characters owning the structures and peer into their wallets. foreach($structures as $structure) { - printf($structure->character_id); + var_dump($structure); } + + return 0; } }