@@ -31,6 +31,7 @@ |
||
31 | 31 | |
32 | 32 | /** |
33 | 33 | * @param Token $token |
34 | + * @return void |
|
34 | 35 | */ |
35 | 36 | public function revoke(Token $token); |
36 | 37 | } |
@@ -17,6 +17,7 @@ |
||
17 | 17 | { |
18 | 18 | /** |
19 | 19 | * @param AuthorizationCode $authorizationCode |
20 | + * @return void |
|
20 | 21 | */ |
21 | 22 | public function save(AuthorizationCode $authorizationCode); |
22 | 23 |
@@ -309,7 +309,7 @@ discard block |
||
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 |
||
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 |
||
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 | */ |
@@ -17,6 +17,7 @@ |
||
17 | 17 | { |
18 | 18 | /** |
19 | 19 | * @param InitialAccessToken $initialAccessToken |
20 | + * @return void |
|
20 | 21 | */ |
21 | 22 | public function save(InitialAccessToken $initialAccessToken); |
22 | 23 |
@@ -19,6 +19,7 @@ |
||
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 |
@@ -21,6 +21,7 @@ |
||
21 | 21 | { |
22 | 22 | /** |
23 | 23 | * @param RefreshToken $refreshToken |
24 | + * @return void |
|
24 | 25 | */ |
25 | 26 | public function save(RefreshToken $refreshToken); |
26 | 27 |
@@ -16,8 +16,8 @@ |
||
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 | class AccessTokenResolver implements ArgumentValueResolverInterface |
@@ -14,10 +14,10 @@ |
||
14 | 14 | namespace OAuth2Framework\Component\AuthorizationCodeGrant; |
15 | 15 | |
16 | 16 | use OAuth2Framework\Component\AuthorizationCodeGrant\PKCEMethod\PKCEMethodManager; |
17 | -use OAuth2Framework\Component\TokenEndpoint\GrantTypeData; |
|
18 | 17 | use OAuth2Framework\Component\Core\Client\Client; |
19 | 18 | use OAuth2Framework\Component\Core\Exception\OAuth2Exception; |
20 | 19 | use OAuth2Framework\Component\TokenEndpoint\GrantType; |
20 | +use OAuth2Framework\Component\TokenEndpoint\GrantTypeData; |
|
21 | 21 | use Psr\Http\Message\ServerRequestInterface; |
22 | 22 | |
23 | 23 | class AuthorizationCodeGrantType implements GrantType |
@@ -128,7 +128,7 @@ |
||
128 | 128 | * @param ServerRequestInterface $request |
129 | 129 | * @param Client $client |
130 | 130 | * @param AuthenticationMethod $authenticationMethod |
131 | - * @param mixed $clientCredentials |
|
131 | + * @param string $clientCredentials |
|
132 | 132 | * |
133 | 133 | * @return bool |
134 | 134 | */ |