Skip to content

Commit

Permalink
docs: fix incorrect PHPDoc types
Browse files Browse the repository at this point in the history
  • Loading branch information
kenjis committed Feb 25, 2024
1 parent 8c76e26 commit f282bae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Authentication/JWT/JWSAdapterInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ interface JWSAdapterInterface
/**
* Issues Signed JWT (JWS)
*
* @param list<mixed> $payload The payload.
* @param array<string, mixed> $payload The payload.
* @param string $keyset The key group.
* The array key of Config\AuthJWT::$keys.
* @param array<string, string>|null $headers An array with header elements to attach.
Expand Down
2 changes: 1 addition & 1 deletion tests/Language/AbstractTranslationTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ final public function testAllLocalizationParametersAreNotTranslated(string $loca
}

/**
* @return list<list<string>>
* @return array<string, list<string>>
*/
final public static function localesProvider(): iterable
{
Expand Down

0 comments on commit f282bae

Please sign in to comment.