Completed
Push — master ( 59ace0...1e869a )
by Propa
03:14
created
src/Number.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Country.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -60,8 +60,8 @@
 block discarded – undo
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
         }
Please login to merge, or discard this patch.
src/Language.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -60,8 +60,8 @@
 block discarded – undo
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
         }
Please login to merge, or discard this patch.
src/Currency.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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(),
Please login to merge, or discard this patch.