GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( b1489d...d608fb )
by Scott van
15:51
created
src/app/code/community/EbayEnterprise/Tax/Block/Sales/Order/Tax.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -100,9 +100,9 @@
 block discarded – undo
100 100
      */
101 101
     protected function totalTaxAmount()
102 102
     {
103
-        $records = array_reduce($this->taxCollector->getTaxRecords(), function ($total, $item) { return $total + $item->getCalculatedTax(); }, 0.00);
104
-        $duties = array_reduce($this->taxCollector->getTaxDuties(), function ($total, $item) { return $total + $item->getAmount(); }, 0.00);
105
-        $fees = array_reduce($this->taxCollector->getTaxFees(), function ($total, $item) { return $total + $item->getAmount(); }, 0.00);
103
+        $records = array_reduce($this->taxCollector->getTaxRecords(), function($total, $item) { return $total + $item->getCalculatedTax(); }, 0.00);
104
+        $duties = array_reduce($this->taxCollector->getTaxDuties(), function($total, $item) { return $total + $item->getAmount(); }, 0.00);
105
+        $fees = array_reduce($this->taxCollector->getTaxFees(), function($total, $item) { return $total + $item->getAmount(); }, 0.00);
106 106
 
107 107
         return $records + $duties + $fees;
108 108
     }
Please login to merge, or discard this patch.