Passed
Pull Request — master (#32)
by
unknown
04:34
created
controllers/notifyController.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -192,10 +192,10 @@
 block discarded – undo
192 192
 
193 193
         if (!$this->woocommerceOrder->has_status($isValidStatus)) { // TO CONFIRM
194 194
             $logMessage = "WARNING checkMerchantOrderStatus." .
195
-                          " Merchant order id:".$this->woocommerceOrder->get_id().
196
-                          " Merchant order status:".$this->woocommerceOrder->get_status().
197
-                          " Pagantis order id:".$this->pagantisOrder->getStatus().
198
-                          " Pagantis order status:".$this->pagantisOrder->getId();
195
+                            " Merchant order id:".$this->woocommerceOrder->get_id().
196
+                            " Merchant order status:".$this->woocommerceOrder->get_status().
197
+                            " Pagantis order id:".$this->pagantisOrder->getStatus().
198
+                            " Pagantis order status:".$this->pagantisOrder->getId();
199 199
 
200 200
             $this->insertLog(null, $logMessage);
201 201
             $this->woocommerceOrder->add_order_note($logMessage);
Please login to merge, or discard this patch.
controllers/paymentController.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -277,9 +277,9 @@
 block discarded – undo
277 277
                 if ($promotedProduct == 'true') {
278 278
                     $promotedAmount+=$product->getAmount();
279 279
                     $promotedMessage = 'Promoted Item: ' . $product->getDescription() .
280
-                                       ' Price: ' . $item['line_total'] .
281
-                                       ' Qty: ' . $product->getQuantity() .
282
-                                       ' Item ID: ' . $item['id_product'];
280
+                                        ' Price: ' . $item['line_total'] .
281
+                                        ' Qty: ' . $product->getQuantity() .
282
+                                        ' Item ID: ' . $item['id_product'];
283 283
                     $metadataOrder->addMetadata('promotedProduct', $promotedMessage);
284 284
                 }
285 285
             }
Please login to merge, or discard this patch.
WC_Pagantis.php 1 patch
Indentation   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -33,24 +33,24 @@  discard block
 block discarded – undo
33 33
     const ORDERS_TABLE = 'posts';
34 34
 
35 35
     public $defaultConfigs = array(
36
-       'PAGANTIS_TITLE'=>'Instant Financing',
37
-       'PAGANTIS_SIMULATOR_DISPLAY_TYPE'=>'sdk.simulator.types.SIMPLE',
38
-       'PAGANTIS_SIMULATOR_DISPLAY_SKIN'=>'sdk.simulator.skins.BLUE',
39
-       'PAGANTIS_SIMULATOR_DISPLAY_POSITION'=>'hookDisplayProductButtons',
40
-       'PAGANTIS_SIMULATOR_START_INSTALLMENTS'=>3,
41
-       'PAGANTIS_SIMULATOR_MAX_INSTALLMENTS'=>12,
42
-       'PAGANTIS_SIMULATOR_CSS_POSITION_SELECTOR'=>'default',
43
-       'PAGANTIS_SIMULATOR_DISPLAY_CSS_POSITION'=>'sdk.simulator.positions.INNER',
44
-       'PAGANTIS_SIMULATOR_CSS_PRICE_SELECTOR'=>'a:3:{i:0;s:48:"div.summary *:not(del)>.woocommerce-Price-amount";i:1;s:54:"div.entry-summary *:not(del)>.woocommerce-Price-amount";i:2;s:36:"*:not(del)>.woocommerce-Price-amount";}',
45
-       'PAGANTIS_SIMULATOR_CSS_QUANTITY_SELECTOR'=>'a:2:{i:0;s:22:"div.quantity input.qty";i:1;s:18:"div.quantity>input";}',
46
-       'PAGANTIS_FORM_DISPLAY_TYPE'=>0,
47
-       'PAGANTIS_DISPLAY_MIN_AMOUNT'=>1,
48
-       'PAGANTIS_URL_OK'=>'',
49
-       'PAGANTIS_URL_KO'=>'',
50
-       'PAGANTIS_ALLOWED_COUNTRIES' => 'a:3:{i:0;s:2:"es";i:1;s:2:"it";i:2;s:2:"fr";}',
51
-       'PAGANTIS_PROMOTION_EXTRA' => '<p>Finance this product <span class="pmt-no-interest">without interest!</span></p>',
52
-       'PAGANTIS_SIMULATOR_THOUSANDS_SEPARATOR' => '.',
53
-       'PAGANTIS_SIMULATOR_DECIMAL_SEPARATOR' => ','
36
+        'PAGANTIS_TITLE'=>'Instant Financing',
37
+        'PAGANTIS_SIMULATOR_DISPLAY_TYPE'=>'sdk.simulator.types.SIMPLE',
38
+        'PAGANTIS_SIMULATOR_DISPLAY_SKIN'=>'sdk.simulator.skins.BLUE',
39
+        'PAGANTIS_SIMULATOR_DISPLAY_POSITION'=>'hookDisplayProductButtons',
40
+        'PAGANTIS_SIMULATOR_START_INSTALLMENTS'=>3,
41
+        'PAGANTIS_SIMULATOR_MAX_INSTALLMENTS'=>12,
42
+        'PAGANTIS_SIMULATOR_CSS_POSITION_SELECTOR'=>'default',
43
+        'PAGANTIS_SIMULATOR_DISPLAY_CSS_POSITION'=>'sdk.simulator.positions.INNER',
44
+        'PAGANTIS_SIMULATOR_CSS_PRICE_SELECTOR'=>'a:3:{i:0;s:48:"div.summary *:not(del)>.woocommerce-Price-amount";i:1;s:54:"div.entry-summary *:not(del)>.woocommerce-Price-amount";i:2;s:36:"*:not(del)>.woocommerce-Price-amount";}',
45
+        'PAGANTIS_SIMULATOR_CSS_QUANTITY_SELECTOR'=>'a:2:{i:0;s:22:"div.quantity input.qty";i:1;s:18:"div.quantity>input";}',
46
+        'PAGANTIS_FORM_DISPLAY_TYPE'=>0,
47
+        'PAGANTIS_DISPLAY_MIN_AMOUNT'=>1,
48
+        'PAGANTIS_URL_OK'=>'',
49
+        'PAGANTIS_URL_KO'=>'',
50
+        'PAGANTIS_ALLOWED_COUNTRIES' => 'a:3:{i:0;s:2:"es";i:1;s:2:"it";i:2;s:2:"fr";}',
51
+        'PAGANTIS_PROMOTION_EXTRA' => '<p>Finance this product <span class="pmt-no-interest">without interest!</span></p>',
52
+        'PAGANTIS_SIMULATOR_THOUSANDS_SEPARATOR' => '.',
53
+        'PAGANTIS_SIMULATOR_DECIMAL_SEPARATOR' => ','
54 54
     );
55 55
 
56 56
     /** @var Array $extraConfig */
@@ -374,7 +374,7 @@  discard block
 block discarded – undo
374 374
         if ($file == plugin_basename(__FILE__)) {
375 375
             $links[] = '<a href="'.WcPagantis::GIT_HUB_URL.'" target="_blank">'.__('Documentation', 'pagantis').'</a>';
376 376
             $links[] = '<a href="'.WcPagantis::PAGANTIS_DOC_URL.'" target="_blank">'.
377
-                       __('API documentation', 'pagantis').'</a>';
377
+                        __('API documentation', 'pagantis').'</a>';
378 378
             $links[] = '<a href="'.WcPagantis::SUPPORT_EML.'">'.__('Support', 'pagantis').'</a>';
379 379
 
380 380
             return $links;
Please login to merge, or discard this patch.