Skip to content

Commit 496b973

Browse files
committed
Again fix more Psalm errors
1 parent 49331d2 commit 496b973

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

src/GrantType/AuthorizationCodeGrantType.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
/**
1111
* Implementation of the OAuth authorization grant type.
12+
* @psalm-api
1213
*/
1314
final class AuthorizationCodeGrantType implements RefreshableGrantTypeInterface
1415
{

src/GrantType/ClientCredentialsGrantType.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
/**
1111
* Implementation of the OAuth client credentials grant type.
12+
* @psalm-api
1213
*/
1314
final class ClientCredentialsGrantType implements GrantTypeInterface
1415
{

src/GrantType/PasswordGrantType.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
/**
1111
* Implementation of the OAuth password grant type.
12+
* @psalm-api
1213
*/
1314
final class PasswordGrantType implements GrantTypeInterface
1415
{

src/RequestSigner/HeaderRequestSigner.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ public function __construct(string $headerName, string $headerValueFormat)
1616
$this->headerValueFormat = $headerValueFormat;
1717
}
1818

19+
#[\Override]
1920
public function modify(array &$options, string $token): void
2021
{
2122
if (!array_key_exists('headers', $options)) {

0 commit comments

Comments
 (0)