@@ -39,13 +39,13 @@ |
||
| 39 | 39 | * @var array |
| 40 | 40 | */ |
| 41 | 41 | protected static $aTypes = [ |
| 42 | - 'visa' => array('name' => 'Visa', 'cardtype' => 'V', 'cvc_length' => 3), |
|
| 43 | - 'mastercard' => array('name' => 'Mastercard', 'cardtype' => 'M', 'cvc_length' => 3), |
|
| 44 | - 'americanexpress' => array('name' => 'American Express', 'cardtype' => 'A', 'cvc_length' => 4), |
|
| 45 | - 'dinersclub' => array('name' => 'Diners Club', 'cardtype' => 'D', 'cvc_length' => 3), |
|
| 46 | - 'jcb' => array('name' => 'JCB', 'cardtype' => 'J', 'cvc_length' => 3), |
|
| 42 | + 'visa' => array('name' => 'Visa', 'cardtype' => 'V', 'cvc_length' => 3), |
|
| 43 | + 'mastercard' => array('name' => 'Mastercard', 'cardtype' => 'M', 'cvc_length' => 3), |
|
| 44 | + 'americanexpress' => array('name' => 'American Express', 'cardtype' => 'A', 'cvc_length' => 4), |
|
| 45 | + 'dinersclub' => array('name' => 'Diners Club', 'cardtype' => 'D', 'cvc_length' => 3), |
|
| 46 | + 'jcb' => array('name' => 'JCB', 'cardtype' => 'J', 'cvc_length' => 3), |
|
| 47 | 47 | 'maestroint' => array('name' => 'Maestro International', 'cardtype' => 'O', 'cvc_length' => 3), |
| 48 | - 'cartebleue' => array('name' => 'Carte Bleue', 'cardtype' => 'B', 'cvc_length' => 3), |
|
| 48 | + 'cartebleue' => array('name' => 'Carte Bleue', 'cardtype' => 'B', 'cvc_length' => 3), |
|
| 49 | 49 | ]; |
| 50 | 50 | |
| 51 | 51 | /** |
@@ -205,7 +205,7 @@ discard block |
||
| 205 | 205 | protected function removeBannedPaymentMethods($aPaymentMethods, Quote $oQuote) |
| 206 | 206 | { |
| 207 | 207 | $aBannedMethos = $this->getBannedPaymentMethods($oQuote); |
| 208 | - for($i = 0; $i < count($aPaymentMethods); $i++) { |
|
| 208 | + for ($i = 0; $i < count($aPaymentMethods); $i++) { |
|
| 209 | 209 | $sCode = $aPaymentMethods[$i]->getCode(); |
| 210 | 210 | if (array_key_exists($sCode, $aBannedMethos) !== false) { |
| 211 | 211 | $iBannedUntil = strtotime($aBannedMethos[$sCode]); |
@@ -228,7 +228,7 @@ discard block |
||
| 228 | 228 | $aWhitelist = $this->checkoutSession->getPayonePaymentWhitelist(); |
| 229 | 229 | if (!empty($aWhitelist)) { |
| 230 | 230 | $iCount = count($aPaymentMethods); |
| 231 | - for($i = 0; $i < $iCount; $i++) { |
|
| 231 | + for ($i = 0; $i < $iCount; $i++) { |
|
| 232 | 232 | if (array_search($aPaymentMethods[$i]->getCode(), $aWhitelist) === false) { |
| 233 | 233 | unset($aPaymentMethods[$i]); |
| 234 | 234 | } |
@@ -245,7 +245,7 @@ discard block |
||
| 245 | 245 | */ |
| 246 | 246 | public function removeAmazonPay($aPaymentMethods) |
| 247 | 247 | { |
| 248 | - for($i = 0; $i < count($aPaymentMethods); $i++) { |
|
| 248 | + for ($i = 0; $i < count($aPaymentMethods); $i++) { |
|
| 249 | 249 | if (isset($aPaymentMethods[$i]) && $aPaymentMethods[$i]->getCode() == PayoneConfig::METHOD_AMAZONPAY) { |
| 250 | 250 | unset($aPaymentMethods[$i]); |
| 251 | 251 | } |
@@ -150,7 +150,7 @@ discard block |
||
| 150 | 150 | if ($aPositions === false || $blFirstCapture === true || $blDebit === true) { |
| 151 | 151 | $this->addShippingItem($oOrder, $aPositions, $blDebit); // add shipping invoice params to request |
| 152 | 152 | $this->addDiscountItem($oOrder, $aPositions, $blDebit); // add discount invoice params to request |
| 153 | - $this->addGiftCardItem($oOrder); // add gift card invoice params to request |
|
| 153 | + $this->addGiftCardItem($oOrder); // add gift card invoice params to request |
|
| 154 | 154 | $this->addAmastyGiftcards($oOrder, $aPositions, $blDebit); // add amasty giftcard invoice params to request |
| 155 | 155 | } |
| 156 | 156 | return $this->dAmount; |
@@ -187,11 +187,11 @@ discard block |
||
| 187 | 187 | { |
| 188 | 188 | $giftCards = json_decode($oOrder->getData('gift_cards'), true); |
| 189 | 189 | |
| 190 | - if(empty($giftCards) || !is_array($giftCards)) { |
|
| 190 | + if (empty($giftCards) || !is_array($giftCards)) { |
|
| 191 | 191 | return; |
| 192 | 192 | } |
| 193 | 193 | |
| 194 | - foreach($giftCards as $giftCard) { |
|
| 194 | + foreach ($giftCards as $giftCard) { |
|
| 195 | 195 | $this->addInvoicePosition($giftCard['c'], -$giftCard['authorized'], 'voucher', 1, 'Giftcard', 0); |
| 196 | 196 | } |
| 197 | 197 | } |
@@ -321,7 +321,7 @@ discard block |
||
| 321 | 321 | { |
| 322 | 322 | if (fmod(floatval($dItemAmount), 1.0) > 0) { // input does not represent an integer |
| 323 | 323 | $sErrorMessage = "Unable to use floating point values for item amounts! Parameter was: "; |
| 324 | - throw new \InvalidArgumentException($sErrorMessage . strval($dItemAmount), 1); |
|
| 324 | + throw new \InvalidArgumentException($sErrorMessage.strval($dItemAmount), 1); |
|
| 325 | 325 | } else { // return the integer value |
| 326 | 326 | return intval($dItemAmount); |
| 327 | 327 | } |