Passed
Pull Request — master (#8)
by Marco Aurélio
04:18
created
src/LaravelCognitoServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
src/Testing/TokenGenerator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
 
25 25
     public static function fromFile(string $path): self
26 26
     {
27
-        $key =file_get_contents($path);
27
+        $key = file_get_contents($path);
28 28
 
29 29
         return new self(JWKSet::createFromJson($key));
30 30
     }
Please login to merge, or discard this patch.