Passed
Push — master ( 5ed34a...340187 )
by Alexandre
02:40
created
src/OAuth2/ResponseTypes/ResponseTypeInterface.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
      * @return array
32 32
      */
33 33
     public function handle(ServerRequestInterface $request, ResourceOwnerInterface $resourceOwner,
34
-                           RegisteredClient $client, ?array $scope = null): array;
34
+                            RegisteredClient $client, ?array $scope = null): array;
35 35
 
36 36
     public function getDefaultResponseMode(): string;
37 37
 
Please login to merge, or discard this patch.
src/OAuth2/OpenID/ResponseTypes/CodeResponseType.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
      * @return array
41 41
      */
42 42
     public function handle(ServerRequestInterface $request, ResourceOwnerInterface $resourceOwner,
43
-                           RegisteredClient $client, ?array $scope = null): array
43
+                            RegisteredClient $client, ?array $scope = null): array
44 44
     {
45 45
         // TODO: Implement handle() method.
46 46
     }
Please login to merge, or discard this patch.
src/OAuth2/OpenID/ResponseTypes/IdTokenResponseType.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
      * @return array
32 32
      */
33 33
     public function handle(ServerRequestInterface $request, ResourceOwnerInterface $resourceOwner,
34
-                           RegisteredClient $client, ?array $scope = null): array
34
+                            RegisteredClient $client, ?array $scope = null): array
35 35
     {
36 36
 
37 37
     }
Please login to merge, or discard this patch.