Failed Conditions
Push — feature/json-api ( 16ac3f )
by Remco
07:50
created
src/Gateway.php 1 patch
Indentation   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -131,23 +131,23 @@
 block discarded – undo
131 131
 		$authorization = 'hmac ' . $this->config->website_key . ':' . hash_hmac( 'sha256', $data, $this->config->secret_key ) . ':' . $nonce . ':' . $request_timestamp;
132 132
 
133 133
 $postArray = array(
134
-    "Currency" => "EUR",
135
-    "AmountDebit" => 10.00,
136
-    "Invoice" => "testinvoice 123",
137
-    "Services" => array(
138
-        "ServiceList" => array(
139
-            array(
140
-                "Action" => "Pay",
141
-                "Name" => "ideal",
142
-                "Parameters" => array(
143
-                    array(
144
-                        "Name" => "issuer",
145
-                        "Value" => "ABNANL2A"
146
-                    )
147
-                )
148
-            )
149
-        )
150
-    )
134
+	"Currency" => "EUR",
135
+	"AmountDebit" => 10.00,
136
+	"Invoice" => "testinvoice 123",
137
+	"Services" => array(
138
+		"ServiceList" => array(
139
+			array(
140
+				"Action" => "Pay",
141
+				"Name" => "ideal",
142
+				"Parameters" => array(
143
+					array(
144
+						"Name" => "issuer",
145
+						"Value" => "ABNANL2A"
146
+					)
147
+				)
148
+			)
149
+		)
150
+	)
151 151
 );
152 152
 
153 153
 
Please login to merge, or discard this patch.