Failed Conditions
Push — master ( a3629e...b4f6c5 )
by Florent
08:47
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/AuthorizationCodeGrant/AuthorizationCodeRepository.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -26,5 +26,8 @@
 block discarded – undo
26 26
      */
27 27
     public function find(AuthorizationCodeId $authorizationCodeId): ?AuthorizationCode;
28 28
 
29
+    /**
30
+     * @return void
31
+     */
29 32
     public function save(AuthorizationCode $authorizationCode): void;
30 33
 }
Please login to merge, or discard this patch.
src/Component/AuthorizationEndpoint/Authorization.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -267,6 +267,7 @@  discard block
 block discarded – undo
267 267
     }
268 268
 
269 269
     /**
270
+     * @param string $value
270 271
      * @return Authorization
271 272
      */
272 273
     public function withResponseHeader(string $responseHeader, $value): self
@@ -356,6 +357,7 @@  discard block
 block discarded – undo
356 357
     }
357 358
 
358 359
     /**
360
+     * @param boolean $data
359 361
      * @return Authorization
360 362
      */
361 363
     public function withData(string $key, $data): self
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.