@@ -88,7 +88,7 @@ |
||
| 88 | 88 | $fallbackLocale = $this->getFallbackLocale() |
| 89 | 89 | ); |
| 90 | 90 | |
| 91 | - if (! isset($this->formatters[$key])) { |
|
| 91 | + if (!isset($this->formatters[$key])) { |
|
| 92 | 92 | $this->formatters[$key] = new NumberFormatter(new NumberFormatRepository($fallbackLocale), ['locale' => $locale]); |
| 93 | 93 | } |
| 94 | 94 | |
@@ -60,8 +60,8 @@ |
||
| 60 | 60 | */ |
| 61 | 61 | protected function data($locale) |
| 62 | 62 | { |
| 63 | - if (! isset($this->data[$locale])) { |
|
| 64 | - $path = base_path('vendor/umpirsky/country-list/data/'.$locale.'/country.php'); |
|
| 63 | + if (!isset($this->data[$locale])) { |
|
| 64 | + $path = base_path('vendor/umpirsky/country-list/data/' . $locale . '/country.php'); |
|
| 65 | 65 | |
| 66 | 66 | $this->data[$locale] = is_file($path) ? require $path : []; |
| 67 | 67 | } |
@@ -60,8 +60,8 @@ |
||
| 60 | 60 | */ |
| 61 | 61 | protected function data($locale) |
| 62 | 62 | { |
| 63 | - if (! isset($this->data[$locale])) { |
|
| 64 | - $path = base_path('vendor/umpirsky/locale-list/data/'.$locale.'/locales.php'); |
|
| 63 | + if (!isset($this->data[$locale])) { |
|
| 64 | + $path = base_path('vendor/umpirsky/locale-list/data/' . $locale . '/locales.php'); |
|
| 65 | 65 | |
| 66 | 66 | $this->data[$locale] = is_file($path) ? require $path : []; |
| 67 | 67 | } |
@@ -142,7 +142,7 @@ discard block |
||
| 142 | 142 | $fallbackLocale = $this->getFallbackLocale() |
| 143 | 143 | ); |
| 144 | 144 | |
| 145 | - if (! isset($this->data[$key])) { |
|
| 145 | + if (!isset($this->data[$key])) { |
|
| 146 | 146 | $this->data[$key] = new CurrencyRepository($locale, $fallbackLocale); |
| 147 | 147 | } |
| 148 | 148 | |
@@ -161,7 +161,7 @@ discard block |
||
| 161 | 161 | $fallbackLocale = $this->getFallbackLocale() |
| 162 | 162 | ); |
| 163 | 163 | |
| 164 | - if (! isset($this->formatters[$key])) { |
|
| 164 | + if (!isset($this->formatters[$key])) { |
|
| 165 | 165 | $this->formatters[$key] = new CurrencyFormatter( |
| 166 | 166 | new NumberFormatRepository($fallbackLocale), |
| 167 | 167 | $this->data(), |