Failed Conditions
Push — master ( 25685a...ee6f6b )
by Florent
69:19 queued 42:36
created
src/Component/TokenEndpoint/GrantType.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -38,6 +38,7 @@
 block discarded – undo
38 38
      * @param ServerRequestInterface $request The request
39 39
      *
40 40
      * @throws OAuth2Message
41
+     * @return void
41 42
      */
42 43
     public function checkRequest(ServerRequestInterface $request);
43 44
 
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
@@ -28,6 +28,7 @@
 block discarded – undo
28 28
      * @throws Exception\ProcessAuthorizationException
29 29
      * @throws Exception\RedirectToLoginPageException
30 30
      * @throws Exception\ShowConsentScreenException
31
+     * @return void
31 32
      */
32 33
     public function check(Authorization $authorization, ?UserAccount $userAccount, bool $isFullyAuthenticated): void;
33 34
 }
Please login to merge, or discard this patch.
Component/Core/UserAccount/AuthenticationContextClassReferenceSupport.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -15,5 +15,8 @@
 block discarded – undo
15 15
 
16 16
 interface AuthenticationContextClassReferenceSupport extends UserAccountManager
17 17
 {
18
+    /**
19
+     * @return void
20
+     */
18 21
     public function getAuthenticationContextClassReferenceFor(UserAccount $user): ?string;
19 22
 }
Please login to merge, or discard this patch.
src/ServerBundle/Component/OpenIdConnect/UserinfoEndpointSource.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\ServerBundle\Component\OpenIdConnect;
15 15
 
16 16
 use OAuth2Framework\ServerBundle\Component\Component;
17
-use OAuth2Framework\ServerBundle\Component\OpenIdConnect\Compiler\UserinfoRouteCompilerPass;
18 17
 use OAuth2Framework\ServerBundle\Component\OpenIdConnect\Compiler\UserInfoScopeSupportCompilerPass;
18
+use OAuth2Framework\ServerBundle\Component\OpenIdConnect\Compiler\UserinfoRouteCompilerPass;
19 19
 use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
20 20
 use Symfony\Component\Config\FileLocator;
21 21
 use Symfony\Component\DependencyInjection\ContainerBuilder;
Please login to merge, or discard this patch.
src/Component/Core/AccessToken/AccessTokenRepository.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -24,6 +24,7 @@
 block discarded – undo
24 24
 
25 25
     /**
26 26
      * @param AccessToken $accessToken The access token to store
27
+     * @return void
27 28
      */
28 29
     public function save(AccessToken $accessToken): void;
29 30
 }
Please login to merge, or discard this patch.
src/Component/BearerTokenType/BearerToken.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\BearerTokenType;
15 15
 
16 16
 use OAuth2Framework\Component\Core\AccessToken\AccessToken;
17
-use OAuth2Framework\Component\Core\Token\Token;
18 17
 use OAuth2Framework\Component\Core\TokenType\TokenType;
18
+use OAuth2Framework\Component\Core\Token\Token;
19 19
 use OAuth2Framework\Component\Core\Util\RequestBodyParser;
20 20
 use Psr\Http\Message\ServerRequestInterface;
21 21
 
Please login to merge, or discard this patch.
src/Component/ClientAuthentication/ClientAuthenticationMiddleware.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -55,6 +55,9 @@
 block discarded – undo
55 55
         return $handler->handle($request);
56 56
     }
57 57
 
58
+    /**
59
+     * @param null|Client $client
60
+     */
58 61
     private function checkClient(?Client $client): void
59 62
     {
60 63
         if (null === $client || $client->isDeleted()) {
Please login to merge, or discard this patch.
src/Component/ClientRegistrationEndpoint/InitialAccessTokenRepository.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -15,6 +15,9 @@
 block discarded – undo
15 15
 
16 16
 interface InitialAccessTokenRepository
17 17
 {
18
+    /**
19
+     * @return void
20
+     */
18 21
     public function save(InitialAccessToken $initialAccessToken);
19 22
 
20 23
     /**
Please login to merge, or discard this patch.
src/Component/Core/Client/ClientRepository.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -17,6 +17,7 @@
 block discarded – undo
17 17
 {
18 18
     /**
19 19
      * Save the client.
20
+     * @return void
20 21
      */
21 22
     public function save(Client $client);
22 23
 
Please login to merge, or discard this patch.