Passed
Push — master ( ddaf40...f35d94 )
by Ivan
02:48
created
src/Laravel/BrowserLocaleServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
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
             );
Please login to merge, or discard this patch.
src/BrowserLocale.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -159,7 +159,7 @@
 block discarded – undo
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
             }
Please login to merge, or discard this patch.