Failed Conditions
Pull Request — ng (#68)
by Florent
23:16 queued 19:02
created
AuthorizationEndpoint/Command/CreatePreConfiguredAuthorizationCommand.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -167,7 +167,7 @@
 block discarded – undo
167 167
     }
168 168
 
169 169
     /**
170
-     * @return array
170
+     * @return string[]
171 171
      */
172 172
     public function getScopes(): array
173 173
     {
Please login to merge, or discard this patch.
AuthorizationEndpoint/Command/RevokePreConfiguredAuthorizationCommand.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -167,7 +167,7 @@
 block discarded – undo
167 167
     }
168 168
 
169 169
     /**
170
-     * @return array
170
+     * @return string[]
171 171
      */
172 172
     public function getScopes(): array
173 173
     {
Please login to merge, or discard this patch.
src/Component/Server/Core/AccessToken/Command/CreateAccessTokenCommand.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -167,7 +167,7 @@
 block discarded – undo
167 167
     }
168 168
 
169 169
     /**
170
-     * @return array
170
+     * @return string[]
171 171
      */
172 172
     public function getScopes(): array
173 173
     {
Please login to merge, or discard this patch.
src/Component/Server/JwtBearerGrant/JwtBearerGrantType.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,14 +20,14 @@
 block discarded – undo
20 20
 use Jose\Component\Signature\JWS;
21 21
 use Jose\Component\Signature\JWSVerifier;
22 22
 use Jose\Component\Signature\Serializer\CompactSerializer as JwsCompactSerializer;
23
-use OAuth2Framework\Component\Server\TokenEndpoint\GrantTypeData;
24 23
 use OAuth2Framework\Component\Server\Core\Client\ClientId;
25 24
 use OAuth2Framework\Component\Server\Core\Client\ClientRepository;
26 25
 use OAuth2Framework\Component\Server\Core\ResourceOwner\ResourceOwnerId;
26
+use OAuth2Framework\Component\Server\Core\Response\OAuth2Exception;
27 27
 use OAuth2Framework\Component\Server\Core\UserAccount\UserAccountId;
28 28
 use OAuth2Framework\Component\Server\Core\UserAccount\UserAccountRepository;
29
-use OAuth2Framework\Component\Server\Core\Response\OAuth2Exception;
30 29
 use OAuth2Framework\Component\Server\TokenEndpoint\GrantType;
30
+use OAuth2Framework\Component\Server\TokenEndpoint\GrantTypeData;
31 31
 use Psr\Http\Message\ServerRequestInterface;
32 32
 
33 33
 final class JwtBearerGrantType implements GrantType
Please login to merge, or discard this patch.
src/Component/Server/Middleware/ClientAuthenticationMiddleware.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,8 +13,8 @@
 block discarded – undo
13 13
 
14 14
 namespace OAuth2Framework\Component\Server\Middleware;
15 15
 
16
-use Interop\Http\Server\RequestHandlerInterface;
17 16
 use Interop\Http\Server\MiddlewareInterface;
17
+use Interop\Http\Server\RequestHandlerInterface;
18 18
 use OAuth2Framework\Component\Server\Core\Client\ClientRepository;
19 19
 use OAuth2Framework\Component\Server\Core\Response\OAuth2Exception;
20 20
 use OAuth2Framework\Component\Server\TokenEndpoint\AuthenticationMethod\TokenEndpointAuthenticationMethodManager;
Please login to merge, or discard this patch.
src/Component/Server/TokenEndpoint/Processor/ProcessorManager.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,10 +14,10 @@
 block discarded – undo
14 14
 namespace OAuth2Framework\Component\Server\TokenEndpoint\Processor;
15 15
 
16 16
 use OAuth2Framework\Component\Server\Core\Response\OAuth2Exception;
17
-use OAuth2Framework\Component\Server\TokenEndpoint\GrantTypeData;
18
-use OAuth2Framework\Component\Server\TokenEndpoint\GrantType;
19 17
 use OAuth2Framework\Component\Server\Core\Scope\ScopePolicyManager;
20 18
 use OAuth2Framework\Component\Server\Core\Scope\ScopeRepository;
19
+use OAuth2Framework\Component\Server\TokenEndpoint\GrantType;
20
+use OAuth2Framework\Component\Server\TokenEndpoint\GrantTypeData;
21 21
 use Psr\Http\Message\ServerRequestInterface;
22 22
 
23 23
 final class ProcessorManager
Please login to merge, or discard this patch.