Passed
Push — master ( df2682...2600cb )
by Sebastian
04:55
created
src/Localization/Currencies/BaseCurrency.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -50,8 +50,8 @@  discard block
 block discarded – undo
50 50
         $countries = array();
51 51
         $iso = $this->getISO();
52 52
 
53
-        foreach(Localization::createCountries()->getAll() as $country) {
54
-            if($country->getCurrencyISO() === $iso) {
53
+        foreach (Localization::createCountries()->getAll() as $country) {
54
+            if ($country->getCurrencyISO() === $iso) {
55 55
                 $countries[] = $country;
56 56
             }
57 57
         }
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
 
85 85
     public function getPreferredSymbol(): string
86 86
     {
87
-        if($this->isNamePreferred()) {
87
+        if ($this->isNamePreferred()) {
88 88
             return $this->getISO();
89 89
         }
90 90
 
Please login to merge, or discard this patch.
src/Localization/Currency/RON.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
         return false;
42 42
     }
43 43
 
44
-    public function getStructuralTemplate(?CountryInterface $country=null): string
44
+    public function getStructuralTemplate(?CountryInterface $country = null): string
45 45
     {
46 46
         return '-{amount} {symbol}';
47 47
     }
Please login to merge, or discard this patch.