Passed
Push — develop ( 9accff...7a02ee )
by Reüel
04:08
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;
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
 				continue;
101 101
 			}
102 102
 
103
-			$currencies[ $alphabetic_code ] = $currency;
103
+			$currencies[$alphabetic_code] = $currency;
104 104
 		}
105 105
 
106 106
 		return $currencies;
Please login to merge, or discard this patch.