Failed Conditions
Push — ng ( a2b1ac...8ea883 )
by Florent
04:25
created
src/ServerBundle/Tests/TestBundle/Controller/ApiController.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\ServerBundle\Tests\TestBundle\Controller;
15 15
 
16
-use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
17 16
 use OAuth2Framework\ServerBundle\Annotation\OAuth2;
17
+use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
18 18
 use Symfony\Bundle\FrameworkBundle\Controller\Controller;
19 19
 use Symfony\Component\HttpFoundation\JsonResponse;
20 20
 use Symfony\Component\HttpFoundation\Response;
Please login to merge, or discard this patch.
ClientAuthentication/Tests/ClientAssertionJwtAuthenticationMethodTest.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,13 +37,13 @@
 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 46
 use OAuth2Framework\Component\Core\UserAccount\UserAccountId;
45
-use OAuth2Framework\Component\ClientAuthentication\AuthenticationMethodManager;
46
-use OAuth2Framework\Component\ClientAuthentication\ClientAssertionJwt;
47 47
 use OAuth2Framework\Component\TrustedIssuer\TrustedIssuer;
48 48
 use OAuth2Framework\Component\TrustedIssuer\TrustedIssuerRepository;
49 49
 use PHPUnit\Framework\TestCase;
Please login to merge, or discard this patch.
src/Component/AuthorizationEndpoint/AuthorizationEndpoint.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -13,15 +13,15 @@
 block discarded – undo
13 13
 
14 14
 namespace OAuth2Framework\Component\AuthorizationEndpoint;
15 15
 
16
-use OAuth2Framework\Component\AuthorizationEndpoint\UserAccount\UserAccountCheckerManager;
17
-use Psr\Http\Server\RequestHandlerInterface;
18
-use Psr\Http\Server\MiddlewareInterface;
19 16
 use OAuth2Framework\Component\AuthorizationEndpoint\ConsentScreen\ExtensionManager;
20 17
 use OAuth2Framework\Component\AuthorizationEndpoint\Exception\OAuth2AuthorizationException;
18
+use OAuth2Framework\Component\AuthorizationEndpoint\UserAccount\UserAccountCheckerManager;
21 19
 use OAuth2Framework\Component\AuthorizationEndpoint\UserAccount\UserAccountDiscoveryManager;
22 20
 use OAuth2Framework\Component\Core\Exception\OAuth2Exception;
23 21
 use Psr\Http\Message\ResponseInterface;
24 22
 use Psr\Http\Message\ServerRequestInterface;
23
+use Psr\Http\Server\MiddlewareInterface;
24
+use Psr\Http\Server\RequestHandlerInterface;
25 25
 
26 26
 abstract class AuthorizationEndpoint implements MiddlewareInterface
27 27
 {
Please login to merge, or discard this patch.
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.