@@ -25,7 +25,7 @@ |
||
25 | 25 | */ |
26 | 26 | protected function registerBrowserLocale() |
27 | 27 | { |
28 | - $this->app->bind(BrowserLocale::class, function () { |
|
28 | + $this->app->bind(BrowserLocale::class, function() { |
|
29 | 29 | return new BrowserLocale( |
30 | 30 | Request::server('HTTP_ACCEPT_LANGUAGE') |
31 | 31 | ); |
@@ -159,7 +159,7 @@ |
||
159 | 159 | */ |
160 | 160 | protected function sortLocales() |
161 | 161 | { |
162 | - usort($this->locales, function ($a, $b) { |
|
162 | + usort($this->locales, function($a, $b) { |
|
163 | 163 | if ($a->weight === $b->weight) { |
164 | 164 | return 0; |
165 | 165 | } |