Passed
Pull Request — master (#364)
by
unknown
02:19
created
Model/Api/Invoice.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
 
163 163
         if ($aPositions === false || $blFirstCapture === true || $blDebit === true) {
164 164
             $this->addShippingItem($oOrder, $aPositions, $blDebit, $dShippingCosts); // add shipping invoice params to request
165
-            $this->addGiftCardItem($oOrder);  // add gift card invoice params to request
165
+            $this->addGiftCardItem($oOrder); // add gift card invoice params to request
166 166
             $this->addDiscountItem($oOrder, $aPositions, $blDebit); // add discount invoice params to request
167 167
             $this->addAmastyGiftcards($oOrder, $aPositions, $blDebit); // add amasty giftcard invoice params to request
168 168
         }
@@ -203,11 +203,11 @@  discard block
 block discarded – undo
203 203
     {
204 204
         $giftCards = json_decode($oOrder->getData('gift_cards'), true);
205 205
 
206
-        if(empty($giftCards) || !is_array($giftCards)) {
206
+        if (empty($giftCards) || !is_array($giftCards)) {
207 207
             return;
208 208
         }
209 209
 
210
-        foreach($giftCards as $giftCard) {
210
+        foreach ($giftCards as $giftCard) {
211 211
             $this->addInvoicePosition($giftCard['c'], -$giftCard['authorized'], 'voucher', 1, 'Giftcard', 0);
212 212
         }
213 213
     }
@@ -350,7 +350,7 @@  discard block
 block discarded – undo
350 350
     {
351 351
         if (fmod(floatval($dItemAmount), 1.0) > 0) { // input does not represent an integer
352 352
             $sErrorMessage = "Unable to use floating point values for item amounts! Parameter was: ";
353
-            throw new \InvalidArgumentException($sErrorMessage . strval($dItemAmount), 1);
353
+            throw new \InvalidArgumentException($sErrorMessage.strval($dItemAmount), 1);
354 354
         } else { // return the integer value
355 355
             return intval($dItemAmount);
356 356
         }
Please login to merge, or discard this patch.