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