Failed Conditions
Pull Request — master (#63)
by Florent
07:25 queued 04:17
created
src/Component/Server/Model/IdToken/IdTokenBuilder.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,9 +18,9 @@
 block discarded – undo
18 18
 use Jose\Component\Core\JWK;
19 19
 use Jose\Component\Core\JWKSet;
20 20
 use Jose\Component\Encryption\JWEBuilder;
21
+use Jose\Component\Encryption\Serializer\CompactSerializer as JweCompactSerializer;
21 22
 use Jose\Component\Signature\JWSBuilder;
22 23
 use Jose\Component\Signature\Serializer\CompactSerializer as JwsCompactSerializer;
23
-use Jose\Component\Encryption\Serializer\CompactSerializer as JweCompactSerializer;
24 24
 use OAuth2Framework\Component\Server\Endpoint\UserInfo\UserInfo;
25 25
 use OAuth2Framework\Component\Server\Model\AccessToken\AccessToken;
26 26
 use OAuth2Framework\Component\Server\Model\AccessToken\AccessTokenId;
Please login to merge, or discard this patch.
src/Component/Server/Endpoint/IssuerDiscovery/IssuerDiscoveryEndpoint.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,8 +16,8 @@
 block discarded – undo
16 16
 use Assert\Assertion;
17 17
 use Http\Message\MessageFactory;
18 18
 use Interop\Http\Factory\UriFactoryInterface;
19
-use Interop\Http\Server\RequestHandlerInterface;
20 19
 use Interop\Http\Server\MiddlewareInterface;
20
+use Interop\Http\Server\RequestHandlerInterface;
21 21
 use OAuth2Framework\Component\Server\Model\Resource\ResourceId;
22 22
 use OAuth2Framework\Component\Server\Model\Resource\ResourceInterface;
23 23
 use OAuth2Framework\Component\Server\Model\Resource\ResourceRepositoryInterface;
Please login to merge, or discard this patch.
src/Component/Server/Endpoint/UserInfo/UserInfoEndpoint.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,8 +14,8 @@
 block discarded – undo
14 14
 namespace OAuth2Framework\Component\Server\Endpoint\UserInfo;
15 15
 
16 16
 use Http\Message\MessageFactory;
17
-use Interop\Http\Server\RequestHandlerInterface;
18 17
 use Interop\Http\Server\MiddlewareInterface;
18
+use Interop\Http\Server\RequestHandlerInterface;
19 19
 use Jose\Component\Core\JWKSet;
20 20
 use Jose\Component\Encryption\JWEBuilder;
21 21
 use Jose\Component\Signature\JWSBuilder;
Please login to merge, or discard this patch.
src/Bundle/Server/Security/Factory/OAuth2SecurityFactory.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,11 +16,11 @@
 block discarded – undo
16 16
 use OAuth2Framework\Bundle\Server\Security\Authentication\Provider\OAuth2Provider;
17 17
 use OAuth2Framework\Bundle\Server\Security\EntryPoint\OAuth2EntryPoint;
18 18
 use OAuth2Framework\Bundle\Server\Security\Firewall\OAuth2Listener;
19
+use Symfony\Bundle\SecurityBundle\DependencyInjection\Security\Factory\SecurityFactoryInterface;
20
+use Symfony\Component\Config\Definition\Builder\NodeDefinition;
19 21
 use Symfony\Component\DependencyInjection\ChildDefinition;
20 22
 use Symfony\Component\DependencyInjection\ContainerBuilder;
21 23
 use Symfony\Component\DependencyInjection\Reference;
22
-use Symfony\Component\Config\Definition\Builder\NodeDefinition;
23
-use Symfony\Bundle\SecurityBundle\DependencyInjection\Security\Factory\SecurityFactoryInterface;
24 24
 use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface;
25 25
 
26 26
 final class OAuth2SecurityFactory implements SecurityFactoryInterface
Please login to merge, or discard this patch.
src/Component/Server/Middleware/OAuth2SecurityMiddleware.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,8 +14,8 @@
 block discarded – undo
14 14
 namespace OAuth2Framework\Component\Server\Middleware;
15 15
 
16 16
 use Assert\Assertion;
17
-use Interop\Http\Server\RequestHandlerInterface;
18 17
 use Interop\Http\Server\MiddlewareInterface;
18
+use Interop\Http\Server\RequestHandlerInterface;
19 19
 use OAuth2Framework\Component\Server\Model\AccessToken\AccessToken;
20 20
 use OAuth2Framework\Component\Server\Model\AccessToken\AccessTokenId;
21 21
 use OAuth2Framework\Component\Server\Response\OAuth2Exception;
Please login to merge, or discard this patch.