Failed Conditions
Push — develop ( 9919c4...f44fda )
by Reüel
07:27
created
src/Gateway.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -80,14 +80,14 @@
 block discarded – undo
80 80
 					foreach ( $request_parameter->ListItemDescriptions as $item ) {
81 81
 						// Make sure to add group.
82 82
 						if ( ! array_key_exists( $item->GroupName, $groups ) ) {
83
-							$groups[ $item->GroupName ] = array(
83
+							$groups[$item->GroupName] = array(
84 84
 								'name'    => $item->GroupName,
85 85
 								'options' => array(),
86 86
 							);
87 87
 						}
88 88
 
89 89
 						// Add issuer to group.
90
-						$groups[ $item->GroupName ]['options'][ $item->Value ] = $item->Description;
90
+						$groups[$item->GroupName]['options'][$item->Value] = $item->Description;
91 91
 					}
92 92
 				}
93 93
 			}
Please login to merge, or discard this patch.