Passed
Pull Request — master (#396)
by
unknown
02:33
created
Model/Source/ApplePayTypes.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,9 +37,9 @@
 block discarded – undo
37 37
      * @var array
38 38
      */
39 39
     protected static $aTypes = [
40
-        ['value' => 'visa',       'label' => 'Visa'],
40
+        ['value' => 'visa', 'label' => 'Visa'],
41 41
         ['value' => 'masterCard', 'label' => 'Mastercard'],
42
-        ['value' => 'girocard',   'label' => 'Girocard']
42
+        ['value' => 'girocard', 'label' => 'Girocard']
43 43
     ];
44 44
 
45 45
     /**
Please login to merge, or discard this patch.
Model/ApplePay/SessionHandler.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
      *
33 33
      * @var string
34 34
      */
35
-    protected $applePaySessionUrl =  "https://apple-pay-gateway-cert.apple.com/paymentservices/startSession";
35
+    protected $applePaySessionUrl = "https://apple-pay-gateway-cert.apple.com/paymentservices/startSession";
36 36
 
37 37
     /**
38 38
      * Constructor
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
 
124 124
         $sKeyPass = $this->shopHelper->getConfigParam("private_key_password", PayoneConfig::METHOD_APPLEPAY, "payment");
125 125
         if (!empty($sKeyPass)) {
126
-            $this->curl->setOption( CURLOPT_KEYPASSWD, $sKeyPass);
126
+            $this->curl->setOption(CURLOPT_KEYPASSWD, $sKeyPass);
127 127
         }
128 128
 
129 129
         $this->curl->post($this->applePaySessionUrl, json_encode($aRequest));
Please login to merge, or discard this patch.