Completed
Push — master ( eb62a9...573a70 )
by Alexandre
02:33
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.
src/OAuth2/Endpoints/AuthorizationEndpoint.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@
 block discarded – undo
106 106
      * @throws \Exception
107 107
      */
108 108
     public function verify(ServerRequestInterface $request, &$client = null, &$responseTypes = null,
109
-                           &$redirectUri = null, &$scope = null, &$responseMode = null, &$isInsecure = null): ?Response
109
+                            &$redirectUri = null, &$scope = null, &$responseMode = null, &$isInsecure = null): ?Response
110 110
     {
111 111
         $authorizationRequest = AuthorizationRequest::createFromServerRequest($request);
112 112
 
Please login to merge, or discard this patch.