@@ -16,7 +16,7 @@ discard block |
||
16 | 16 | public function execute(\Magento\Framework\Event\Observer $observer) |
17 | 17 | { |
18 | 18 | try { |
19 | - if ($observer->getEvent()->getMethodInstance()->getCode()=="pagantis") { |
|
19 | + if ($observer->getEvent()->getMethodInstance()->getCode() == "pagantis") { |
|
20 | 20 | $checkResult = $observer->getEvent()->getResult(); |
21 | 21 | $objectManager = \Magento\Framework\App\ObjectManager::getInstance(); |
22 | 22 | $config = $objectManager->create('Pagantis\Pagantis\Helper\Config')->getConfig(); |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | $availableCountry = (in_array(strtolower($locale), $allowedCountries)); |
28 | 28 | if (!isset($config['pagantis_public_key']) || $config['pagantis_public_key'] == '' || |
29 | 29 | !isset($config['pagantis_private_key']) || $config['pagantis_private_key'] == '' || |
30 | - !$availableCountry ) { |
|
30 | + !$availableCountry) { |
|
31 | 31 | $checkResult->setData('is_available', false); |
32 | 32 | } else { |
33 | 33 | $checkResult->setData('is_available', true); |
@@ -234,9 +234,9 @@ discard block |
||
234 | 234 | if ($promotedProduct == 'true') { |
235 | 235 | $promotedAmount+=$product->getAmount()*$item->getQty(); |
236 | 236 | $promotedMessage = 'Promoted Item: ' . $item->getName() . |
237 | - ' Price: ' . $item->getPrice() . |
|
238 | - ' Qty: ' . $item->getQty() . |
|
239 | - ' Item ID: ' . $item->getItemId(); |
|
237 | + ' Price: ' . $item->getPrice() . |
|
238 | + ' Qty: ' . $item->getQty() . |
|
239 | + ' Item ID: ' . $item->getItemId(); |
|
240 | 240 | $metadataOrder->addMetadata('promotedProduct', $promotedMessage); |
241 | 241 | } |
242 | 242 | } |
@@ -401,9 +401,9 @@ discard block |
||
401 | 401 | $magentoVersion = $this->productMetadataInterface->getVersion(); |
402 | 402 | $moduleInfo = $this->moduleList->getOne('Pagantis_Pagantis'); |
403 | 403 | return array( 'magento' => $magentoVersion, |
404 | - 'pagantis' => $moduleInfo['setup_version'], |
|
405 | - 'php' => phpversion(), |
|
406 | - 'curl' => $curlVersion); |
|
404 | + 'pagantis' => $moduleInfo['setup_version'], |
|
405 | + 'php' => phpversion(), |
|
406 | + 'curl' => $curlVersion); |
|
407 | 407 | } |
408 | 408 | |
409 | 409 | /** |
@@ -125,12 +125,12 @@ discard block |
||
125 | 125 | $customer = $quote->getCustomer(); |
126 | 126 | $shippingAddress = $quote->getShippingAddress(); |
127 | 127 | |
128 | - if (isset($params['email']) && $params['email']!='') { |
|
128 | + if (isset($params['email']) && $params['email'] != '') { |
|
129 | 129 | $this->session->setEmail($params['email']); //Get guest email after refresh page |
130 | 130 | $customer->setEmail($params['email']); |
131 | 131 | $quote->setCheckoutMethod('guest'); |
132 | 132 | $quote->getBillingAddress()->setEmail($params['email']); |
133 | - } elseif ($customer->getEmail()=='') { |
|
133 | + } elseif ($customer->getEmail() == '') { |
|
134 | 134 | $customer->setEmail($this->session->getEmail()); |
135 | 135 | $quote->setCheckoutMethod('guest'); |
136 | 136 | $quote->getBillingAddress()->setEmail($this->session->getEmail()); |
@@ -141,7 +141,7 @@ discard block |
||
141 | 141 | $currentQuote->setCustomerEmail($customer->getEmail()); |
142 | 142 | $this->quoteRepository->save($currentQuote); |
143 | 143 | |
144 | - $userAddress = new Address(); |
|
144 | + $userAddress = new Address(); |
|
145 | 145 | $userAddress |
146 | 146 | ->setZipCode($shippingAddress->getPostcode()) |
147 | 147 | ->setFullName($shippingAddress->getFirstname()." ".$shippingAddress->getLastname()) |
@@ -163,7 +163,7 @@ discard block |
||
163 | 163 | ->setTaxId($tax_id) |
164 | 164 | ; |
165 | 165 | |
166 | - $orderBillingAddress = new Address(); |
|
166 | + $orderBillingAddress = new Address(); |
|
167 | 167 | $billingAddress = $quote->getBillingAddress(); |
168 | 168 | $orderBillingAddress |
169 | 169 | ->setZipCode($billingAddress->getPostcode()) |
@@ -192,7 +192,7 @@ discard block |
||
192 | 192 | if ($customer->getDob()) { |
193 | 193 | $orderUser->setDateOfBirth($customer->getDob()); |
194 | 194 | } |
195 | - if ($customer->getTaxvat()!='') { |
|
195 | + if ($customer->getTaxvat() != '') { |
|
196 | 196 | $orderUser->setDni($customer->getTaxvat()); |
197 | 197 | $orderBillingAddress->setDni($customer->getTaxvat()); |
198 | 198 | $orderShippingAddress->setDni($customer->getTaxvat()); |
@@ -232,11 +232,11 @@ discard block |
||
232 | 232 | |
233 | 233 | $promotedProduct = $this->isPromoted($item); |
234 | 234 | if ($promotedProduct == 'true') { |
235 | - $promotedAmount+=$product->getAmount()*$item->getQty(); |
|
236 | - $promotedMessage = 'Promoted Item: ' . $item->getName() . |
|
237 | - ' Price: ' . $item->getPrice() . |
|
238 | - ' Qty: ' . $item->getQty() . |
|
239 | - ' Item ID: ' . $item->getItemId(); |
|
235 | + $promotedAmount += $product->getAmount() * $item->getQty(); |
|
236 | + $promotedMessage = 'Promoted Item: '.$item->getName(). |
|
237 | + ' Price: '.$item->getPrice(). |
|
238 | + ' Qty: '.$item->getQty(). |
|
239 | + ' Item ID: '.$item->getItemId(); |
|
240 | 240 | $metadataOrder->addMetadata('promotedProduct', $promotedMessage); |
241 | 241 | } |
242 | 242 | } |
@@ -273,7 +273,7 @@ discard block |
||
273 | 273 | ->setType(Channel::ONLINE) |
274 | 274 | ; |
275 | 275 | |
276 | - $haystack = ($this->store->getLocale()!=null) ? $this->store->getLocale() : $this->getResolverCountry(); |
|
276 | + $haystack = ($this->store->getLocale() != null) ? $this->store->getLocale() : $this->getResolverCountry(); |
|
277 | 277 | $language = strstr($haystack, '_', true); |
278 | 278 | $orderConfiguration = new Configuration(); |
279 | 279 | $orderConfiguration |
@@ -291,7 +291,7 @@ discard block |
||
291 | 291 | ->setUser($orderUser) |
292 | 292 | ; |
293 | 293 | |
294 | - if ($this->config['pagantis_public_key']=='' || $this->config['pagantis_private_key']=='') { |
|
294 | + if ($this->config['pagantis_public_key'] == '' || $this->config['pagantis_private_key'] == '') { |
|
295 | 295 | throw new \Exception('Public and Secret Key not found'); |
296 | 296 | } |
297 | 297 | |
@@ -317,7 +317,7 @@ discard block |
||
317 | 317 | } |
318 | 318 | |
319 | 319 | $displayMode = $this->extraConfig['PAGANTIS_FORM_DISPLAY_TYPE']; |
320 | - if ($displayMode==='0') { |
|
320 | + if ($displayMode === '0') { |
|
321 | 321 | echo $url; |
322 | 322 | exit; |
323 | 323 | } else { |
@@ -339,11 +339,11 @@ discard block |
||
339 | 339 | private function getOrders($customerId) |
340 | 340 | { |
341 | 341 | $orderCollection = array(); |
342 | - if ($customerId!='') { |
|
342 | + if ($customerId != '') { |
|
343 | 343 | $this->orderCollection->addAttributeToFilter('customer_id', $customerId) |
344 | 344 | ->addAttributeToFilter( |
345 | 345 | 'status', |
346 | - ['in' => ['processing','pending','complete']] |
|
346 | + ['in' => ['processing', 'pending', 'complete']] |
|
347 | 347 | ) |
348 | 348 | ->load(); |
349 | 349 | $orderCollection = $this->orderCollection->getData(); |
@@ -386,7 +386,7 @@ discard block |
||
386 | 386 | $tableName = $this->dbObject->getTableName(self::ORDERS_TABLE); |
387 | 387 | return $dbConnection->insertOnDuplicate( |
388 | 388 | $tableName, |
389 | - array('id'=>$quoteId,'order_id'=>$pagantisOrderId), |
|
389 | + array('id'=>$quoteId, 'order_id'=>$pagantisOrderId), |
|
390 | 390 | array('order_id') |
391 | 391 | ); |
392 | 392 | } |
@@ -400,7 +400,7 @@ discard block |
||
400 | 400 | $curlVersion = $curlInfo['version']; |
401 | 401 | $magentoVersion = $this->productMetadataInterface->getVersion(); |
402 | 402 | $moduleInfo = $this->moduleList->getOne('Pagantis_Pagantis'); |
403 | - return array( 'magento' => $magentoVersion, |
|
403 | + return array('magento' => $magentoVersion, |
|
404 | 404 | 'pagantis' => $moduleInfo['setup_version'], |
405 | 405 | 'php' => phpversion(), |
406 | 406 | 'curl' => $curlVersion); |
@@ -107,7 +107,7 @@ |
||
107 | 107 | foreach ($items as $key => $item) { |
108 | 108 | $promotedProduct = $this->isPromoted($item); |
109 | 109 | if ($promotedProduct == 'true') { |
110 | - $promotedAmount+=$item->getPrice()*$item->getQty(); |
|
110 | + $promotedAmount += $item->getPrice() * $item->getQty(); |
|
111 | 111 | } |
112 | 112 | } |
113 | 113 |
@@ -16,25 +16,25 @@ |
||
16 | 16 | * @var array $defaultConfigs |
17 | 17 | */ |
18 | 18 | public $defaultConfigs = array( |
19 | - 'PAGANTIS_TITLE'=>'Instant Financing', |
|
20 | - 'PAGANTIS_SIMULATOR_DISPLAY_TYPE'=>'sdk.simulator.types.SIMPLE', |
|
21 | - 'PAGANTIS_SIMULATOR_DISPLAY_SKIN'=>'sdk.simulator.skins.BLUE', |
|
22 | - 'PAGANTIS_SIMULATOR_DISPLAY_POSITION'=>'hookDisplayProductButtons', |
|
23 | - 'PAGANTIS_SIMULATOR_START_INSTALLMENTS'=>3, |
|
24 | - 'PAGANTIS_SIMULATOR_MAX_INSTALLMENTS'=>12, |
|
25 | - 'PAGANTIS_SIMULATOR_CSS_POSITION_SELECTOR'=>'default', |
|
26 | - 'PAGANTIS_SIMULATOR_DISPLAY_CSS_POSITION'=>'sdk.simulator.positions.INNER', |
|
27 | - 'PAGANTIS_SIMULATOR_CSS_PRICE_SELECTOR'=>'default', |
|
28 | - 'PAGANTIS_SIMULATOR_CSS_QUANTITY_SELECTOR'=>'default', |
|
29 | - 'PAGANTIS_FORM_DISPLAY_TYPE'=>0, |
|
30 | - 'PAGANTIS_DISPLAY_MIN_AMOUNT'=>1, |
|
31 | - 'PAGANTIS_URL_OK'=>'', |
|
32 | - 'PAGANTIS_URL_KO'=>'', |
|
33 | - 'PAGANTIS_TITLE_EXTRA' => 'Pay up to 12 comfortable installments with Pagantis. Completely online and sympathetic request, and the answer is immediate!', |
|
34 | - 'PAGANTIS_ALLOWED_COUNTRIES' => 'a:3:{i:0;s:2:"es";i:1;s:2:"it";i:2;s:2:"fr";}', |
|
35 | - 'PAGANTIS_PROMOTION_EXTRA' => '<p class="promoted">Finance this product <span class="pmt-no-interest">without interest!</span></p>', |
|
36 | - 'PAGANTIS_SIMULATOR_THOUSANDS_SEPARATOR' => '.', |
|
37 | - 'PAGANTIS_SIMULATOR_DECIMAL_SEPARATOR' => ',' |
|
19 | + 'PAGANTIS_TITLE'=>'Instant Financing', |
|
20 | + 'PAGANTIS_SIMULATOR_DISPLAY_TYPE'=>'sdk.simulator.types.SIMPLE', |
|
21 | + 'PAGANTIS_SIMULATOR_DISPLAY_SKIN'=>'sdk.simulator.skins.BLUE', |
|
22 | + 'PAGANTIS_SIMULATOR_DISPLAY_POSITION'=>'hookDisplayProductButtons', |
|
23 | + 'PAGANTIS_SIMULATOR_START_INSTALLMENTS'=>3, |
|
24 | + 'PAGANTIS_SIMULATOR_MAX_INSTALLMENTS'=>12, |
|
25 | + 'PAGANTIS_SIMULATOR_CSS_POSITION_SELECTOR'=>'default', |
|
26 | + 'PAGANTIS_SIMULATOR_DISPLAY_CSS_POSITION'=>'sdk.simulator.positions.INNER', |
|
27 | + 'PAGANTIS_SIMULATOR_CSS_PRICE_SELECTOR'=>'default', |
|
28 | + 'PAGANTIS_SIMULATOR_CSS_QUANTITY_SELECTOR'=>'default', |
|
29 | + 'PAGANTIS_FORM_DISPLAY_TYPE'=>0, |
|
30 | + 'PAGANTIS_DISPLAY_MIN_AMOUNT'=>1, |
|
31 | + 'PAGANTIS_URL_OK'=>'', |
|
32 | + 'PAGANTIS_URL_KO'=>'', |
|
33 | + 'PAGANTIS_TITLE_EXTRA' => 'Pay up to 12 comfortable installments with Pagantis. Completely online and sympathetic request, and the answer is immediate!', |
|
34 | + 'PAGANTIS_ALLOWED_COUNTRIES' => 'a:3:{i:0;s:2:"es";i:1;s:2:"it";i:2;s:2:"fr";}', |
|
35 | + 'PAGANTIS_PROMOTION_EXTRA' => '<p class="promoted">Finance this product <span class="pmt-no-interest">without interest!</span></p>', |
|
36 | + 'PAGANTIS_SIMULATOR_THOUSANDS_SEPARATOR' => '.', |
|
37 | + 'PAGANTIS_SIMULATOR_DECIMAL_SEPARATOR' => ',' |
|
38 | 38 | ); |
39 | 39 | |
40 | 40 | /** |
@@ -531,17 +531,17 @@ |
||
531 | 531 | } |
532 | 532 | |
533 | 533 | $this->magentoOrder->addStatusHistoryComment($metadataInfo) |
534 | - ->setIsCustomerNotified(false) |
|
535 | - ->setEntityName('order') |
|
536 | - ->save(); |
|
534 | + ->setIsCustomerNotified(false) |
|
535 | + ->setEntityName('order') |
|
536 | + ->save(); |
|
537 | 537 | |
538 | 538 | $comment = 'pagantisOrderId: '.$this->pagantisOrder->getId(). ' ' . |
539 | - 'pagantisOrderStatus: '.$this->pagantisOrder->getStatus(). ' ' . |
|
540 | - 'via: '.$this->origin; |
|
539 | + 'pagantisOrderStatus: '.$this->pagantisOrder->getStatus(). ' ' . |
|
540 | + 'via: '.$this->origin; |
|
541 | 541 | $this->magentoOrder->addStatusHistoryComment($comment) |
542 | - ->setIsCustomerNotified(false) |
|
543 | - ->setEntityName('order') |
|
544 | - ->save(); |
|
542 | + ->setIsCustomerNotified(false) |
|
543 | + ->setEntityName('order') |
|
544 | + ->save(); |
|
545 | 545 | |
546 | 546 | if ($this->magentoOrderId == '') { |
547 | 547 | throw new UnknownException('Order can not be saved'); |
@@ -273,7 +273,7 @@ discard block |
||
273 | 273 | $this->checkPagantisStatus(array('AUTHORIZED')); |
274 | 274 | } catch (\Exception $e) { |
275 | 275 | $this->getMagentoOrderId(); |
276 | - if ($this->magentoOrderId!='') { |
|
276 | + if ($this->magentoOrderId != '') { |
|
277 | 277 | throw new AlreadyProcessedException(); |
278 | 278 | } else { |
279 | 279 | throw new WrongStatusException($this->pagantisOrder->getStatus()); |
@@ -286,7 +286,7 @@ discard block |
||
286 | 286 | */ |
287 | 287 | private function checkMerchantOrderStatus() |
288 | 288 | { |
289 | - if ($this->quote->getIsActive()=='0') { |
|
289 | + if ($this->quote->getIsActive() == '0') { |
|
290 | 290 | $this->getMagentoOrderId(); |
291 | 291 | throw new AlreadyProcessedException(); |
292 | 292 | } |
@@ -418,7 +418,7 @@ discard block |
||
418 | 418 | $tableName = $this->dbObject->getTableName(self::CONCURRENCY_TABLE); |
419 | 419 | if ($mode == false) { |
420 | 420 | $dbConnection->delete($tableName, "timestamp<".(time() - 5)); |
421 | - } elseif ($this->quoteId!='') { |
|
421 | + } elseif ($this->quoteId != '') { |
|
422 | 422 | $dbConnection->delete($tableName, "id=".$this->quoteId); |
423 | 423 | } |
424 | 424 | } catch (Exception $exception) { |
@@ -454,7 +454,7 @@ discard block |
||
454 | 454 | sleep($expirationSec + 1); |
455 | 455 | } |
456 | 456 | |
457 | - $logMessage = sprintf( |
|
457 | + $logMessage = sprintf( |
|
458 | 458 | "User waiting %s seconds, default seconds %s, bd time to expire %s seconds", |
459 | 459 | $expirationSec, |
460 | 460 | self::CONCURRENCY_TIMEOUT, |
@@ -499,7 +499,7 @@ discard block |
||
499 | 499 | /** @var \Magento\Framework\DB\Adapter\AdapterInterface $dbConnection */ |
500 | 500 | $dbConnection = $this->dbObject->getConnection(); |
501 | 501 | $tableName = $this->dbObject->getTableName(self::ORDERS_TABLE); |
502 | - $pagantisOrderId = $this->pagantisOrderId; |
|
502 | + $pagantisOrderId = $this->pagantisOrderId; |
|
503 | 503 | |
504 | 504 | $query = "select mg_order_id from $tableName where id='$this->quoteId' and order_id='$pagantisOrderId'"; |
505 | 505 | $queryResult = $dbConnection->fetchRow($query); |
@@ -526,7 +526,7 @@ discard block |
||
526 | 526 | $metadataInfo = null; |
527 | 527 | foreach ($metadataOrder as $metadataKey => $metadataValue) { |
528 | 528 | if ($metadataKey == 'promotedProduct') { |
529 | - $metadataInfo.= " Producto promocionado = $metadataValue //"; |
|
529 | + $metadataInfo .= " Producto promocionado = $metadataValue //"; |
|
530 | 530 | } |
531 | 531 | } |
532 | 532 | |
@@ -535,8 +535,8 @@ discard block |
||
535 | 535 | ->setEntityName('order') |
536 | 536 | ->save(); |
537 | 537 | |
538 | - $comment = 'pagantisOrderId: '.$this->pagantisOrder->getId(). ' ' . |
|
539 | - 'pagantisOrderStatus: '.$this->pagantisOrder->getStatus(). ' ' . |
|
538 | + $comment = 'pagantisOrderId: '.$this->pagantisOrder->getId().' '. |
|
539 | + 'pagantisOrderStatus: '.$this->pagantisOrder->getStatus().' '. |
|
540 | 540 | 'via: '.$this->origin; |
541 | 541 | $this->magentoOrder->addStatusHistoryComment($comment) |
542 | 542 | ->setIsCustomerNotified(false) |
@@ -560,7 +560,7 @@ discard block |
||
560 | 560 | /** @var \Magento\Framework\DB\Adapter\AdapterInterface $dbConnection */ |
561 | 561 | $dbConnection = $this->dbObject->getConnection(); |
562 | 562 | $tableName = $this->dbObject->getTableName(self::ORDERS_TABLE); |
563 | - $pagantisOrderId = $this->pagantisOrder->getId(); |
|
563 | + $pagantisOrderId = $this->pagantisOrder->getId(); |
|
564 | 564 | $dbConnection->update( |
565 | 565 | $tableName, |
566 | 566 | array('mg_order_id' => $this->magentoOrderId), |
@@ -610,7 +610,7 @@ discard block |
||
610 | 610 | { |
611 | 611 | //$returnUrl = 'checkout/#payment'; |
612 | 612 | $returnUrl = $this->_url->getUrl('checkout', ['_fragment' => 'payment']); |
613 | - if ($this->magentoOrderId!='') { |
|
613 | + if ($this->magentoOrderId != '') { |
|
614 | 614 | /** @var Order $this->magentoOrder */ |
615 | 615 | $this->magentoOrder = $this->orderRepositoryInterface->get($this->magentoOrderId); |
616 | 616 | if (!$this->_objectManager->get(\Magento\Checkout\Model\Session\SuccessValidator::class)->isValid()) { |
@@ -627,7 +627,7 @@ discard block |
||
627 | 627 | $orderStatus = strtolower($this->magentoOrder->getStatus()); |
628 | 628 | $acceptedStatus = array('processing', 'completed'); |
629 | 629 | if (in_array($orderStatus, $acceptedStatus)) { |
630 | - if (isset($this->extraConfig['PAGANTIS_OK_URL']) && $this->extraConfig['PAGANTIS_OK_URL']!= '') { |
|
630 | + if (isset($this->extraConfig['PAGANTIS_OK_URL']) && $this->extraConfig['PAGANTIS_OK_URL'] != '') { |
|
631 | 631 | $returnUrl = $this->extraConfig['PAGANTIS_OK_URL']; |
632 | 632 | } else { |
633 | 633 | $returnUrl = 'checkout/onepage/success'; |
@@ -537,17 +537,17 @@ |
||
537 | 537 | } |
538 | 538 | |
539 | 539 | $this->magentoOrder->addStatusHistoryComment($metadataInfo) |
540 | - ->setIsCustomerNotified(false) |
|
541 | - ->setEntityName('order') |
|
542 | - ->save(); |
|
540 | + ->setIsCustomerNotified(false) |
|
541 | + ->setEntityName('order') |
|
542 | + ->save(); |
|
543 | 543 | |
544 | 544 | $comment = 'pagantisOrderId: ' . $this->pagantisOrder->getId(). ' ' . |
545 | - 'pagantisOrderStatus: '. $this->pagantisOrder->getStatus(). ' ' . |
|
546 | - 'via: '. $this->origin; |
|
545 | + 'pagantisOrderStatus: '. $this->pagantisOrder->getStatus(). ' ' . |
|
546 | + 'via: '. $this->origin; |
|
547 | 547 | $this->magentoOrder->addStatusHistoryComment($comment) |
548 | - ->setIsCustomerNotified(false) |
|
549 | - ->setEntityName('order') |
|
550 | - ->save(); |
|
548 | + ->setIsCustomerNotified(false) |
|
549 | + ->setEntityName('order') |
|
550 | + ->save(); |
|
551 | 551 | |
552 | 552 | if ($this->magentoOrderId == '') { |
553 | 553 | throw new UnknownException('Order can not be saved'); |
@@ -276,7 +276,7 @@ discard block |
||
276 | 276 | $this->checkPagantisStatus(array('AUTHORIZED')); |
277 | 277 | } catch (\Exception $e) { |
278 | 278 | $this->getMagentoOrderId(); |
279 | - if ($this->magentoOrderId!='') { |
|
279 | + if ($this->magentoOrderId != '') { |
|
280 | 280 | throw new AlreadyProcessedException(); |
281 | 281 | } else { |
282 | 282 | throw new WrongStatusException($this->pagantisOrder->getStatus()); |
@@ -289,7 +289,7 @@ discard block |
||
289 | 289 | */ |
290 | 290 | private function checkMerchantOrderStatus() |
291 | 291 | { |
292 | - if ($this->quote->getIsActive()=='0') { |
|
292 | + if ($this->quote->getIsActive() == '0') { |
|
293 | 293 | $this->getMagentoOrderId(); |
294 | 294 | throw new AlreadyProcessedException(); |
295 | 295 | } |
@@ -421,7 +421,7 @@ discard block |
||
421 | 421 | $tableName = $this->dbObject->getTableName(self::CONCURRENCY_TABLE); |
422 | 422 | if ($mode == false) { |
423 | 423 | $dbConnection->delete($tableName, "timestamp<".(time() - 5)); |
424 | - } elseif ($this->quoteId!='') { |
|
424 | + } elseif ($this->quoteId != '') { |
|
425 | 425 | $dbConnection->delete($tableName, "id=".$this->quoteId); |
426 | 426 | } |
427 | 427 | } catch (Exception $exception) { |
@@ -457,7 +457,7 @@ discard block |
||
457 | 457 | sleep($expirationSec + 1); |
458 | 458 | } |
459 | 459 | |
460 | - $logMessage = sprintf( |
|
460 | + $logMessage = sprintf( |
|
461 | 461 | "User waiting %s seconds, default seconds %s, bd time to expire %s seconds", |
462 | 462 | $expirationSec, |
463 | 463 | self::CONCURRENCY_TIMEOUT, |
@@ -502,14 +502,14 @@ discard block |
||
502 | 502 | /** @var \Magento\Framework\DB\Adapter\AdapterInterface $dbConnection */ |
503 | 503 | $dbConnection = $this->dbObject->getConnection(); |
504 | 504 | $tableName = $this->dbObject->getTableName(self::ORDERS_TABLE); |
505 | - $pagantisOrderId = $this->pagantisOrderId; |
|
505 | + $pagantisOrderId = $this->pagantisOrderId; |
|
506 | 506 | $query = sprintf( |
507 | 507 | "select mg_order_id from %s where id='%s' and order_id='%s'", |
508 | 508 | $tableName, |
509 | 509 | $this->quoteId, |
510 | 510 | $pagantisOrderId |
511 | 511 | ); |
512 | - $queryResult = $dbConnection->fetchRow($query); |
|
512 | + $queryResult = $dbConnection->fetchRow($query); |
|
513 | 513 | $this->magentoOrderId = $queryResult['mg_order_id']; |
514 | 514 | } catch (\Exception $e) { |
515 | 515 | throw new UnknownException($e->getMessage()); |
@@ -532,7 +532,7 @@ discard block |
||
532 | 532 | $metadataInfo = null; |
533 | 533 | foreach ($metadataOrder as $metadataKey => $metadataValue) { |
534 | 534 | if ($metadataKey == 'promotedProduct') { |
535 | - $metadataInfo.= "/Producto promocionado = $metadataValue"; |
|
535 | + $metadataInfo .= "/Producto promocionado = $metadataValue"; |
|
536 | 536 | } |
537 | 537 | } |
538 | 538 | |
@@ -541,9 +541,9 @@ discard block |
||
541 | 541 | ->setEntityName('order') |
542 | 542 | ->save(); |
543 | 543 | |
544 | - $comment = 'pagantisOrderId: ' . $this->pagantisOrder->getId(). ' ' . |
|
545 | - 'pagantisOrderStatus: '. $this->pagantisOrder->getStatus(). ' ' . |
|
546 | - 'via: '. $this->origin; |
|
544 | + $comment = 'pagantisOrderId: '.$this->pagantisOrder->getId().' '. |
|
545 | + 'pagantisOrderStatus: '.$this->pagantisOrder->getStatus().' '. |
|
546 | + 'via: '.$this->origin; |
|
547 | 547 | $this->magentoOrder->addStatusHistoryComment($comment) |
548 | 548 | ->setIsCustomerNotified(false) |
549 | 549 | ->setEntityName('order') |
@@ -566,7 +566,7 @@ discard block |
||
566 | 566 | /** @var \Magento\Framework\DB\Adapter\AdapterInterface $dbConnection */ |
567 | 567 | $dbConnection = $this->dbObject->getConnection(); |
568 | 568 | $tableName = $this->dbObject->getTableName(self::ORDERS_TABLE); |
569 | - $pagantisOrderId = $this->pagantisOrder->getId(); |
|
569 | + $pagantisOrderId = $this->pagantisOrder->getId(); |
|
570 | 570 | $dbConnection->update( |
571 | 571 | $tableName, |
572 | 572 | array('mg_order_id' => $this->magentoOrderId), |
@@ -599,7 +599,7 @@ discard block |
||
599 | 599 | { |
600 | 600 | //$returnUrl = 'checkout/#payment'; |
601 | 601 | $returnUrl = $this->_url->getUrl('checkout', ['_fragment' => 'payment']); |
602 | - if ($this->magentoOrderId!='') { |
|
602 | + if ($this->magentoOrderId != '') { |
|
603 | 603 | /** @var Order $this->magentoOrder */ |
604 | 604 | $this->magentoOrder = $this->orderRepositoryInterface->get($this->magentoOrderId); |
605 | 605 | if (!$this->_objectManager->get(\Magento\Checkout\Model\Session\SuccessValidator::class)->isValid()) { |
@@ -616,7 +616,7 @@ discard block |
||
616 | 616 | $orderStatus = strtolower($this->magentoOrder->getStatus()); |
617 | 617 | $acceptedStatus = array('processing', 'completed'); |
618 | 618 | if (in_array($orderStatus, $acceptedStatus)) { |
619 | - if (isset($this->extraConfig['PAGANTIS_OK_URL']) && $this->extraConfig['PAGANTIS_OK_URL']!= '') { |
|
619 | + if (isset($this->extraConfig['PAGANTIS_OK_URL']) && $this->extraConfig['PAGANTIS_OK_URL'] != '') { |
|
620 | 620 | $returnUrl = $this->extraConfig['PAGANTIS_OK_URL']; |
621 | 621 | } else { |
622 | 622 | $returnUrl = 'checkout/onepage/success'; |
@@ -96,7 +96,7 @@ |
||
96 | 96 | $headers = $transfer->getHeaders(); |
97 | 97 | |
98 | 98 | if (isset($headers['force_result'])) { |
99 | - return (int)$headers['force_result']; |
|
99 | + return (int) $headers['force_result']; |
|
100 | 100 | } |
101 | 101 | |
102 | 102 | return $this->results[mt_rand(0, 1)]; |
@@ -38,7 +38,7 @@ |
||
38 | 38 | |
39 | 39 | $payment->setAdditionalInformation( |
40 | 40 | self::FRAUD_MSG_LIST, |
41 | - (array)$response[self::FRAUD_MSG_LIST] |
|
41 | + (array) $response[self::FRAUD_MSG_LIST] |
|
42 | 42 | ); |
43 | 43 | |
44 | 44 | /** @var $payment Payment */ |