From 8ba46f892a822e3cd034b7062cf82ce820ea8986 Mon Sep 17 00:00:00 2001 From: drkthunder02 Date: Thu, 22 Nov 2018 22:06:16 -0600 Subject: [PATCH] testing --- app/Console/Commands/corpJournal.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/app/Console/Commands/corpJournal.php b/app/Console/Commands/corpJournal.php index f053f841a..f77b9339e 100644 --- a/app/Console/Commands/corpJournal.php +++ b/app/Console/Commands/corpJournal.php @@ -49,13 +49,11 @@ class CorpJournal extends Command $finance = new Finances(); //Get the corps with structures logged in the database $structures = DB::table('CorpStructures')->first(); - var_dump($structures); + printf($structures); //Get the characters that have the esi-wallet.read_corporation_wallets.v1 //esi wallet scope $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) { - var_dump($structure); - } + } }