Test Failed
Push — develop ( 5d1492...ddf0fb )
by Remco
03:56
created
src/Gateway.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -117,14 +117,14 @@
 block discarded – undo
117 117
 
118 118
 			if ( Sequence::FIRST === $sequence_type ) {
119 119
 				foreach ( $result as $method => $title ) {
120
-					unset( $result[ $method ] );
120
+					unset( $result[$method] );
121 121
 
122 122
 					// Get WordPress payment method for direct debit method.
123 123
 					$method         = Methods::transform_gateway_method( $method );
124 124
 					$payment_method = array_search( $method, PaymentMethods::get_recurring_methods(), true );
125 125
 
126 126
 					if ( $payment_method ) {
127
-						$results[ $payment_method ] = $title;
127
+						$results[$payment_method] = $title;
128 128
 					}
129 129
 				}
130 130
 			}
Please login to merge, or discard this patch.