Completed
Pull Request — master (#2)
by Robin
07:05
created
Category
src/Message/CompletePurchaseRequest.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -43,12 +43,12 @@
 block discarded – undo
43 43
         }
44 44
 
45 45
         return md5(
46
-            (($this->getTestMode() && !empty($data['is_test']) && $data['is_test'] === '1') ? 'TEST' : '') .
47
-            $data['transactionid'] .
48
-            $data['currency'] .
49
-            $data['amount'] .
50
-            $data['ref'] .
51
-            $data['status'] .
46
+            (($this->getTestMode() && !empty($data['is_test']) && $data['is_test'] === '1') ? 'TEST' : '').
47
+            $data['transactionid'].
48
+            $data['currency'].
49
+            $data['amount'].
50
+            $data['ref'].
51
+            $data['status'].
52 52
             $this->getSecretKey()
53 53
         );
54 54
     }
Please login to merge, or discard this patch.
src/AbstractGateway.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@
 block discarded – undo
87 87
         $gatewayType = str_replace('Omnipay\Curopayments\\', '', substr(get_class($this), 0, -7));
88 88
 
89 89
         return $this->createRequest(
90
-            '\Omnipay\Curopayments\Message\\' . $gatewayType . 'PurchaseRequest',
90
+            '\Omnipay\Curopayments\Message\\'.$gatewayType.'PurchaseRequest',
91 91
             $parameters
92 92
         );
93 93
     }
Please login to merge, or discard this patch.