Failed Conditions
Push — develop ( 2de1b1...49fae7 )
by Remco
12:57 queued 04:10
created
src/Gateway.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -64,13 +64,13 @@
 block discarded – undo
64 64
 					if ( 'issuer' === $request_parameter->Name ) {
65 65
 						foreach ( $request_parameter->ListItemDescriptions as $item ) {
66 66
 							if ( ! array_key_exists( $item->GroupName, $groups ) ) {
67
-								$groups[ $item->GroupName ] = array(
67
+								$groups[$item->GroupName] = array(
68 68
 									'name'    => $item->GroupName,
69 69
 									'options' => array(),
70 70
 								);
71 71
 							}
72 72
 
73
-							$groups[ $item->GroupName ]['options'][ $item->Value ] = $item->Description;
73
+							$groups[$item->GroupName]['options'][$item->Value] = $item->Description;
74 74
 						}
75 75
 					}
76 76
 				}
Please login to merge, or discard this patch.