Passed
Pull Request — master (#36)
by Raúl
02:50
created
controllers/front/payment.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -72,8 +72,8 @@
 block discarded – undo
72 72
         $paylaterPublicKey = Configuration::get('pmt_public_key');
73 73
         $paylaterPrivateKey = Configuration::get('pmt_private_key');
74 74
         $okUrl = _PS_BASE_URL_.__PS_BASE_URI__
75
-                 .'index.php?canonical=true&fc=module&module=paylater&controller=notify&'
76
-                 .http_build_query($query)
75
+                    .'index.php?canonical=true&fc=module&module=paylater&controller=notify&'
76
+                    .http_build_query($query)
77 77
         ;
78 78
 
79 79
         $shippingAddress = new Address($cart->id_address_delivery);
Please login to merge, or discard this patch.
controllers/front/notify.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -353,7 +353,7 @@
 block discarded – undo
353 353
      */
354 354
     public function cancelProcess($response = null)
355 355
     {
356
-       if ($this->merchantOrder && $this->error === true) {
356
+        if ($this->merchantOrder && $this->error === true) {
357 357
             sleep(5);
358 358
             $id = (!is_null($this->pmtOrder))?$this->pmtOrder->getId():null;
359 359
             $status = (!is_null($this->pmtOrder))?$this->pmtOrder->getStatus():null;
Please login to merge, or discard this patch.