Failed Conditions
Push — master ( c31236...8b5d94 )
by Florent
05:19
created
src/Component/AuthorizationEndpoint/UserAccount/UserAccountChecker.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -19,6 +19,7 @@
 block discarded – undo
19 19
 {
20 20
     /**
21 21
      * @param Authorization $authorization
22
+     * @return void
22 23
      */
23 24
     public function check(Authorization $authorization);
24 25
 }
Please login to merge, or discard this patch.
src/Component/AuthorizationEndpoint/AuthorizationEndpoint.php 1 patch
Unused Use Statements   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -13,16 +13,16 @@
 block discarded – undo
13 13
 
14 14
 namespace OAuth2Framework\Component\AuthorizationEndpoint;
15 15
 
16
-use OAuth2Framework\Component\AuthorizationEndpoint\ParameterChecker\ParameterCheckerManager;
17
-use OAuth2Framework\Component\AuthorizationEndpoint\UserAccount\UserAccountCheckerManager;
18
-use Psr\Http\Server\RequestHandlerInterface;
19
-use Psr\Http\Server\MiddlewareInterface;
20 16
 use OAuth2Framework\Component\AuthorizationEndpoint\ConsentScreen\ExtensionManager;
21 17
 use OAuth2Framework\Component\AuthorizationEndpoint\Exception\OAuth2AuthorizationException;
18
+use OAuth2Framework\Component\AuthorizationEndpoint\ParameterChecker\ParameterCheckerManager;
19
+use OAuth2Framework\Component\AuthorizationEndpoint\UserAccount\UserAccountCheckerManager;
22 20
 use OAuth2Framework\Component\AuthorizationEndpoint\UserAccount\UserAccountDiscovery;
23 21
 use OAuth2Framework\Component\Core\Exception\OAuth2Exception;
24 22
 use Psr\Http\Message\ResponseInterface;
25 23
 use Psr\Http\Message\ServerRequestInterface;
24
+use Psr\Http\Server\MiddlewareInterface;
25
+use Psr\Http\Server\RequestHandlerInterface;
26 26
 
27 27
 abstract class AuthorizationEndpoint implements MiddlewareInterface
28 28
 {
Please login to merge, or discard this patch.
ClientAuthentication/Tests/ClientAssertionJwtAuthenticationMethodTest.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -37,15 +37,15 @@
 block discarded – undo
37 37
 use Jose\Component\Signature\JWSTokenSupport;
38 38
 use Jose\Component\Signature\JWSVerifier;
39 39
 use Jose\Component\Signature\Serializer\CompactSerializer;
40
+use OAuth2Framework\Component\ClientAuthentication\AuthenticationMethodManager;
41
+use OAuth2Framework\Component\ClientAuthentication\ClientAssertionJwt;
40 42
 use OAuth2Framework\Component\Core\Client\Client;
41 43
 use OAuth2Framework\Component\Core\Client\ClientId;
42 44
 use OAuth2Framework\Component\Core\DataBag\DataBag;
43 45
 use OAuth2Framework\Component\Core\Exception\OAuth2Exception;
44
-use OAuth2Framework\Component\Core\UserAccount\UserAccountId;
45
-use OAuth2Framework\Component\ClientAuthentication\AuthenticationMethodManager;
46
-use OAuth2Framework\Component\ClientAuthentication\ClientAssertionJwt;
47 46
 use OAuth2Framework\Component\Core\TrustedIssuer\TrustedIssuer;
48 47
 use OAuth2Framework\Component\Core\TrustedIssuer\TrustedIssuerRepository;
48
+use OAuth2Framework\Component\Core\UserAccount\UserAccountId;
49 49
 use PHPUnit\Framework\TestCase;
50 50
 use Psr\Http\Message\ServerRequestInterface;
51 51
 use Zend\Diactoros\Response;
Please login to merge, or discard this patch.
src/Component/JwtBearerGrant/Tests/JwtBearerGrantTypeTest.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -41,12 +41,12 @@
 block discarded – undo
41 41
 use OAuth2Framework\Component\Core\Client\ClientRepository;
42 42
 use OAuth2Framework\Component\Core\DataBag\DataBag;
43 43
 use OAuth2Framework\Component\Core\Exception\OAuth2Exception;
44
+use OAuth2Framework\Component\Core\TrustedIssuer\TrustedIssuer;
45
+use OAuth2Framework\Component\Core\TrustedIssuer\TrustedIssuerRepository;
44 46
 use OAuth2Framework\Component\Core\UserAccount\UserAccount;
45 47
 use OAuth2Framework\Component\Core\UserAccount\UserAccountId;
46 48
 use OAuth2Framework\Component\Core\UserAccount\UserAccountRepository;
47 49
 use OAuth2Framework\Component\JwtBearerGrant\JwtBearerGrantType;
48
-use OAuth2Framework\Component\Core\TrustedIssuer\TrustedIssuer;
49
-use OAuth2Framework\Component\Core\TrustedIssuer\TrustedIssuerRepository;
50 50
 use OAuth2Framework\Component\TokenEndpoint\GrantTypeData;
51 51
 use PHPUnit\Framework\TestCase;
52 52
 use Prophecy\Argument;
Please login to merge, or discard this patch.