Passed
Push — master ( afb738...5addfc )
by Manuel
55s queued 13s
created
example/PaymentPage/1-example-initialize.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
 
65 65
 // Step 4:
66 66
 // Redirect to the payment page
67
-echo 'Redirect to: ' . $response->getRedirectUrl() ."<br>\n";
67
+echo 'Redirect to: ' . $response->getRedirectUrl() . "<br>\n";
68 68
 
69 69
 // Step 5:
70 70
 // Fill in test payment page. For dummy credit card numbers see
Please login to merge, or discard this patch.
lib/SaferpayJson/Response/ErrorResponse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
      * @SerializedName("ErrorDetail")
41 41
      * @Type("array")
42 42
      */
43
-    protected $errorDetail = [];
43
+    protected $errorDetail = [ ];
44 44
 
45 45
     /**
46 46
      * @var string|null
Please login to merge, or discard this patch.
lib/SaferpayJson/Request/Request.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -193,7 +193,7 @@
 block discarded – undo
193 193
         return [
194 194
             'Content-Type'  => 'application/json; charset=utf-8',
195 195
             'Accept'        => 'application/json',
196
-            'Authorization' => 'Basic ' . base64_encode($this->apiKey.':'.$this->apiSecret)
196
+            'Authorization' => 'Basic ' . base64_encode($this->apiKey . ':' . $this->apiSecret)
197 197
         ];
198 198
     }
199 199
 
Please login to merge, or discard this patch.
lib/SaferpayJson/Container/RegisterAlias.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      * @SerializedName("IdGenerator")
13 13
      * @Type("string")
14 14
      */
15
-    protected $IdGenerator="RANDOM";
15
+    protected $IdGenerator = "RANDOM";
16 16
 
17 17
     /**
18 18
      * @var string
Please login to merge, or discard this patch.
example/SecureAliasStore/1-example-insert.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
 
65 65
 // Step 4:
66 66
 // Redirect to the payment page
67
-echo 'Redirect to: ' . $response->getRedirectUrl() ."<br>\n";
67
+echo 'Redirect to: ' . $response->getRedirectUrl() . "<br>\n";
68 68
 
69 69
 // Step 5:
70 70
 // Fill in test payment page. For dummy credit card numbers see
Please login to merge, or discard this patch.