From 94f80c27c737380197df1ea7bc829856d81673d0 Mon Sep 17 00:00:00 2001 From: drkthunder02 Date: Sat, 29 Dec 2018 21:45:45 -0600 Subject: [PATCH] mailer --- app/Console/Commands/calculatemarkettax.php | 5 ----- 1 file changed, 5 deletions(-) diff --git a/app/Console/Commands/calculatemarkettax.php b/app/Console/Commands/calculatemarkettax.php index dd915746f..1bbb59941 100644 --- a/app/Console/Commands/calculatemarkettax.php +++ b/app/Console/Commands/calculatemarkettax.php @@ -70,17 +70,12 @@ class CalculateMarketTax extends Command $corps = CorpStructure::select('corporation_id')->groupBy('corporation_id')->get(); $this->line('Got all of the corps with markets.' . sizeof($corps)); foreach($corps as $corp) { - $this->line('Entered foreach loop'); $finalTaxes = $sHelper->GetTaxes($corp->corporation_id, 'Market', $start, $end); - var_dump($finalTaxes); - $this->line('Received final taxes'); if($finalTaxes < 0.00) { $finalTaxes = 0.00; } - $this->line('Checked for negative number.'); $finalTaxes = number_format($finalTaxes, 2, '.', ','); - $this->line('Final Taxes are: ' . $finalTaxes); //Get the info about the structures from the database $info = CorpStructure::where(['corporation_id' => $corp->corporation_id])->first();