@@ -17,7 +17,7 @@ discard block |
||
17 | 17 | |
18 | 18 | private function registerIssuer(): void |
19 | 19 | { |
20 | - $this->app->bind(Issuer::class, function () { |
|
20 | + $this->app->bind(Issuer::class, function() { |
|
21 | 21 | $config = $this->app->get('config'); |
22 | 22 | |
23 | 23 | $pool = $config->get('auth.cognito.pool'); |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | |
31 | 31 | private function registerCognitoUserProvider(): void |
32 | 32 | { |
33 | - Auth::provider(CognitoUserProvider::class, function (Container $app) { |
|
33 | + Auth::provider(CognitoUserProvider::class, function(Container $app) { |
|
34 | 34 | return $app->make(CognitoUserProvider::class); |
35 | 35 | }); |
36 | 36 | } |