Test Failed
Push — develop ( fd928b...40893b )
by Remco
04:14
created
src/XML/IDealIssuersResponseMessage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
 			$code        = Security::filter( $issuer->code );
33 33
 			$description = Security::filter( $issuer->description );
34 34
 
35
-			$message->issuers[ $code ] = $description;
35
+			$message->issuers[$code] = $description;
36 36
 		}
37 37
 
38 38
 		return $message;
Please login to merge, or discard this patch.
src/XML/GatewaysResponseMessage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
 			$id          = Security::filter( $gateway->id );
40 40
 			$description = Security::filter( $gateway->description );
41 41
 
42
-			$message->gateways[ $id ] = $description;
42
+			$message->gateways[$id] = $description;
43 43
 		}
44 44
 
45 45
 		return $message;
Please login to merge, or discard this patch.
src/Methods.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -175,8 +175,8 @@
 block discarded – undo
175 175
 			return null;
176 176
 		}
177 177
 
178
-		if ( isset( self::$map[ $payment_method ] ) ) {
179
-			return self::$map[ $payment_method ];
178
+		if ( isset( self::$map[$payment_method] ) ) {
179
+			return self::$map[$payment_method];
180 180
 		}
181 181
 
182 182
 		return $default;
Please login to merge, or discard this patch.