@@ -50,8 +50,8 @@ discard block |
||
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 |
||
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 |
@@ -41,7 +41,7 @@ |
||
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 | } |