Failed Conditions
Push — ng ( 454b3b...0fdecc )
by Florent
13:00
created
src/Component/AuthorizationCodeGrant/AuthorizationCodeRepository.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
      * @param AuthorizationCode $authorizationCode
20
+     * @return void
20 21
      */
21 22
     public function save(AuthorizationCode $authorizationCode);
22 23
 
Please login to merge, or discard this patch.
src/Component/Core/Event/EventStore.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 Event $event
22
+     * @return void
22 23
      */
23 24
     public function save(Event $event);
24 25
 
Please login to merge, or discard this patch.
src/Component/JwtBearerGrant/JwtBearerGrantType.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,14 +20,14 @@
 block discarded – undo
20 20
 use Jose\Component\Signature\JWS;
21 21
 use Jose\Component\Signature\JWSVerifier;
22 22
 use Jose\Component\Signature\Serializer\CompactSerializer as JwsCompactSerializer;
23
-use OAuth2Framework\Component\TokenEndpoint\GrantTypeData;
24 23
 use OAuth2Framework\Component\Core\Client\ClientId;
25 24
 use OAuth2Framework\Component\Core\Client\ClientRepository;
25
+use OAuth2Framework\Component\Core\Exception\OAuth2Exception;
26 26
 use OAuth2Framework\Component\Core\ResourceOwner\ResourceOwnerId;
27 27
 use OAuth2Framework\Component\Core\UserAccount\UserAccountId;
28 28
 use OAuth2Framework\Component\Core\UserAccount\UserAccountRepository;
29
-use OAuth2Framework\Component\Core\Exception\OAuth2Exception;
30 29
 use OAuth2Framework\Component\TokenEndpoint\GrantType;
30
+use OAuth2Framework\Component\TokenEndpoint\GrantTypeData;
31 31
 use Psr\Http\Message\ServerRequestInterface;
32 32
 
33 33
 final class JwtBearerGrantType implements GrantType
Please login to merge, or discard this patch.
src/Bundle/Resolver/AccessTokenResolver.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 OAuth2Framework\Bundle\Security\Authentication\Token\OAuth2Token;
17 17
 use OAuth2Framework\Component\Core\AccessToken\AccessToken;
18 18
 use Symfony\Component\HttpFoundation\Request;
19
-use Symfony\Component\HttpKernel\Controller\ArgumentValueResolverInterface;
20 19
 use Symfony\Component\HttpKernel\ControllerMetadata\ArgumentMetadata;
20
+use Symfony\Component\HttpKernel\Controller\ArgumentValueResolverInterface;
21 21
 use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface;
22 22
 
23 23
 final class AccessTokenResolver implements ArgumentValueResolverInterface
Please login to merge, or discard this patch.
src/Component/AuthorizationEndpoint/Authorization.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -309,7 +309,7 @@  discard block
 block discarded – undo
309 309
 
310 310
     /**
311 311
      * @param string $responseHeader
312
-     * @param mixed  $value
312
+     * @param string  $value
313 313
      *
314 314
      * @return Authorization
315 315
      */
@@ -418,7 +418,7 @@  discard block
 block discarded – undo
418 418
     /**
419 419
      * @param string $key
420 420
      *
421
-     * @return mixed
421
+     * @return boolean
422 422
      */
423 423
     public function getData(string $key)
424 424
     {
@@ -431,7 +431,7 @@  discard block
 block discarded – undo
431 431
 
432 432
     /**
433 433
      * @param string $key
434
-     * @param mixed  $data
434
+     * @param boolean  $data
435 435
      *
436 436
      * @return Authorization
437 437
      */
Please login to merge, or discard this patch.
src/Component/ClientRegistrationEndpoint/InitialAccessTokenRepository.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
      * @param InitialAccessToken $initialAccessToken
20
+     * @return void
20 21
      */
21 22
     public function save(InitialAccessToken $initialAccessToken);
22 23
 
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
@@ -37,6 +37,7 @@
 block discarded – undo
37 37
 
38 38
     /**
39 39
      * @param AccessToken $token
40
+     * @return void
40 41
      */
41 42
     public function save(AccessToken $token);
42 43
 
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
@@ -19,6 +19,7 @@
 block discarded – undo
19 19
      * Save the client.
20 20
      *
21 21
      * @param Client $client
22
+     * @return void
22 23
      */
23 24
     public function save(Client $client);
24 25
 
Please login to merge, or discard this patch.
src/Component/RefreshTokenGrant/RefreshTokenRepository.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -39,6 +39,7 @@
 block discarded – undo
39 39
 
40 40
     /**
41 41
      * @param RefreshToken $refreshToken
42
+     * @return void
42 43
      */
43 44
     public function save(RefreshToken $refreshToken);
44 45
 
Please login to merge, or discard this patch.