Test Failed
Push — develop ( 351362...f1cb30 )
by Remco
03:55
created
src/Currencies.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -52,8 +52,8 @@  discard block
 block discarded – undo
52 52
 
53 53
 		$currencies = self::get_currencies();
54 54
 
55
-		if ( isset( $currencies[ $alphabetic_code ] ) ) {
56
-			$currency = $currencies[ $alphabetic_code ];
55
+		if ( isset( $currencies[$alphabetic_code] ) ) {
56
+			$currency = $currencies[$alphabetic_code];
57 57
 		}
58 58
 
59 59
 		return $currency;
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
 			$currency->set_symbol( $info['symbol'] );
100 100
 			$currency->set_number_decimals( $info['number_decimals'] );
101 101
 
102
-			$currencies[ $alphabetic_code ] = $currency;
102
+			$currencies[$alphabetic_code] = $currency;
103 103
 		}
104 104
 
105 105
 		return $currencies;
Please login to merge, or discard this patch.