@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | } elseif ($_SERVER['REQUEST_METHOD'] == 'POST') { |
73 | 73 | if (count($_POST)) { |
74 | 74 | foreach ($_POST as $config => $value) { |
75 | - if (isset($this->defaultConfigs[$config]) && $response['status']==null) { |
|
75 | + if (isset($this->defaultConfigs[$config]) && $response['status'] == null) { |
|
76 | 76 | $dbConnection->update( |
77 | 77 | $tableName, |
78 | 78 | array('value' => $value), |
@@ -90,7 +90,7 @@ discard block |
||
90 | 90 | } |
91 | 91 | |
92 | 92 | $formattedResult = array(); |
93 | - if ($response['status']==null) { |
|
93 | + if ($response['status'] == null) { |
|
94 | 94 | $dbResult = $dbConnection->fetchAll("select * from $tableName"); |
95 | 95 | foreach ($dbResult as $value) { |
96 | 96 | $formattedResult[$value['config']] = $value['value']; |
@@ -26,9 +26,9 @@ |
||
26 | 26 | { |
27 | 27 | $originalData = $element->getOriginalData(); |
28 | 28 | $label = __($originalData['button_label']); |
29 | - $url = $this->escapeHtml($originalData['button_url']); |
|
29 | + $url = $this->escapeHtml($originalData['button_url']); |
|
30 | 30 | $labelCredentials = __($originalData['button_credentials_label']); |
31 | - $urlCredentials = $this->escapeHtml($originalData['button_credentials_url']); |
|
31 | + $urlCredentials = $this->escapeHtml($originalData['button_credentials_url']); |
|
32 | 32 | return <<<EOD |
33 | 33 | <div class="pp-buttons-container"> |
34 | 34 | <button onclick="javascript:window.open('$url')" class="scalable" type="button" id="bo_pagantis"> |
@@ -44,7 +44,7 @@ |
||
44 | 44 | $secretKey = $this->getRequest()->getParam('secret'); |
45 | 45 | $privateKey = isset($this->config['pagantis_private_key']) ? $this->config['pagantis_private_key'] : null; |
46 | 46 | |
47 | - if ($secretKey!='' && $privateKey!='') { |
|
47 | + if ($secretKey != '' && $privateKey != '') { |
|
48 | 48 | $this->checkDbLogTable(); |
49 | 49 | /** @var \Magento\Framework\DB\Adapter\AdapterInterface $dbConnection */ |
50 | 50 | $dbConnection = $this->dbObject->getConnection(); |
@@ -44,7 +44,7 @@ |
||
44 | 44 | $secretKey = $this->getRequest()->getParam('secret'); |
45 | 45 | $privateKey = isset($this->config['pagantis_private_key']) ? $this->config['pagantis_private_key'] : null; |
46 | 46 | |
47 | - if ($secretKey!='' && $privateKey!='') { |
|
47 | + if ($secretKey != '' && $privateKey != '') { |
|
48 | 48 | $this->checkDbLogTable(); |
49 | 49 | /** @var \Magento\Framework\DB\Adapter\AdapterInterface $dbConnection */ |
50 | 50 | $dbConnection = $this->dbObject->getConnection(); |
@@ -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 |
@@ -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 */ |
@@ -89,7 +89,7 @@ discard block |
||
89 | 89 | } elseif ($this->_request->isPost()) { |
90 | 90 | if (count($_POST)) { |
91 | 91 | foreach ($_POST as $config => $value) { |
92 | - if (isset($this->defaultConfigs[$config]) && $response['status']==null) { |
|
92 | + if (isset($this->defaultConfigs[$config]) && $response['status'] == null) { |
|
93 | 93 | $dbConnection->update( |
94 | 94 | $tableName, |
95 | 95 | array('value' => $value), |
@@ -107,7 +107,7 @@ discard block |
||
107 | 107 | } |
108 | 108 | |
109 | 109 | $formattedResult = array(); |
110 | - if ($response['status']==null) { |
|
110 | + if ($response['status'] == null) { |
|
111 | 111 | $dbResult = $dbConnection->fetchAll("select * from $tableName"); |
112 | 112 | foreach ($dbResult as $value) { |
113 | 113 | $formattedResult[$value['config']] = $value['value']; |
@@ -305,7 +305,7 @@ discard block |
||
305 | 305 | */ |
306 | 306 | public function getFinalPrice4x() |
307 | 307 | { |
308 | - return number_format($this->getProduct()->getFinalPrice()/4, 2); |
|
308 | + return number_format($this->getProduct()->getFinalPrice() / 4, 2); |
|
309 | 309 | } |
310 | 310 | |
311 | 311 | /** |
@@ -542,7 +542,7 @@ discard block |
||
542 | 542 | $minAmount = $this->getMinAmount(); |
543 | 543 | $totalPrice = (string) floor($this->getFinalPrice()); |
544 | 544 | |
545 | - return ($totalPrice>=$minAmount && ($totalPrice<=$maxAmount||$maxAmount=='0')); |
|
545 | + return ($totalPrice >= $minAmount && ($totalPrice <= $maxAmount || $maxAmount == '0')); |
|
546 | 546 | } |
547 | 547 | |
548 | 548 | /** |
@@ -554,7 +554,7 @@ discard block |
||
554 | 554 | $minAmount = $this->getMinAmount4x(); |
555 | 555 | $totalPrice = (string) floor($this->getFinalPrice()); |
556 | 556 | |
557 | - return ($totalPrice>=$minAmount && ($totalPrice<=$maxAmount||$maxAmount=='0')); |
|
557 | + return ($totalPrice >= $minAmount && ($totalPrice <= $maxAmount || $maxAmount == '0')); |
|
558 | 558 | } |
559 | 559 | |
560 | 560 | /** |