Failed Conditions
Push — ng ( a2b1ac...8ea883 )
by Florent
04:25
created
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.