@@ -11,15 +11,15 @@ |
||
11 | 11 | { |
12 | 12 | public function register() |
13 | 13 | { |
14 | - Auth::provider(NativeSessionUserProvider::class, function () { |
|
14 | + Auth::provider(NativeSessionUserProvider::class, function() { |
|
15 | 15 | return $this->app->make(NativeSessionUserProvider::class); |
16 | 16 | }); |
17 | 17 | |
18 | - Auth::extend(NativeSessionGuard::class, function (Container $app) { |
|
18 | + Auth::extend(NativeSessionGuard::class, function(Container $app) { |
|
19 | 19 | return $app->make(NativeSessionGuard::class); |
20 | 20 | }); |
21 | 21 | |
22 | - $this->app->bind(SessionRetriever::class, function () { |
|
22 | + $this->app->bind(SessionRetriever::class, function() { |
|
23 | 23 | $config = $this->app->make(Repository::class); |
24 | 24 | $path = $config->get('auth.guards.php.storage'); |
25 | 25 |