@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | // Non-localized, generic routes (such as those for admin panel etc). |
47 | 47 | //----------------------------------------------------------------------- |
48 | 48 | |
49 | - $router->group(compact('namespace', 'middleware'), function (Router $router) { |
|
49 | + $router->group(compact('namespace', 'middleware'), function(Router $router) { |
|
50 | 50 | $router->get('/oauth/{provider}', 'Users\AuthController@getOAuth'); |
51 | 51 | }); |
52 | 52 | |
@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | } |
63 | 63 | |
64 | 64 | // Set localized routers. |
65 | - $router->group(compact('namespace', 'middleware', 'prefix'), function (Router $router) use ($prefix) { |
|
65 | + $router->group(compact('namespace', 'middleware', 'prefix'), function(Router $router) use ($prefix) { |
|
66 | 66 | $this->localizedRoutes($router, $prefix); |
67 | 67 | }); |
68 | 68 | } |
@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | //------------------------------------------------ |
73 | 73 | |
74 | 74 | app('translator')->setLocale($defaultLocale); |
75 | - $router->group(compact('namespace', 'middleware'), function (Router $router) use ($defaultLocale) { |
|
75 | + $router->group(compact('namespace', 'middleware'), function(Router $router) use ($defaultLocale) { |
|
76 | 76 | $this->localizedRoutes($router, $defaultLocale); |
77 | 77 | }); |
78 | 78 | } |