use psalm dev branch

This commit is contained in:
azjezz 2020-12-04 12:57:48 +01:00
parent 0082c83c0c
commit 1da118e11d
3 changed files with 6 additions and 5 deletions

View File

@ -23,7 +23,7 @@
"friendsofphp/php-cs-fixer": "^2.16",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.5",
"vimeo/psalm": "^4.3"
"vimeo/psalm": "dev-master"
},
"autoload": {
"psr-4": {

View File

@ -14,8 +14,8 @@ namespace Psl\Password;
function algorithms(): array
{
return [
(string) BCRYPT_ALGORITHM,
(string) ARGON2I_ALGORITHM,
(string) ARGON2ID_ALGORITHM,
BCRYPT_ALGORITHM,
ARGON2I_ALGORITHM,
ARGON2ID_ALGORITHM,
];
}

View File

@ -23,8 +23,9 @@ use function password_get_info;
*/
function get_information(string $hash): array
{
/** @var array{algoName: string, options: array<string, array-key>} $information */
$information = password_get_info($hash);
$algorithm = (string)$information['algoName'];
$algorithm = $information['algoName'];
if (BCRYPT_ALGORITHM === $algorithm) {
return [
'algorithm' => $algorithm,