chore(deps): upgrade vimeo/psalm

This commit is contained in:
Ben Ramsey
2021-08-06 14:25:16 -05:00
parent c005f69d6e
commit 4511ccd7e6
15 changed files with 14 additions and 16 deletions
+3 -3
View File
@@ -35,11 +35,11 @@ class PeclUuidNameGenerator implements NameGeneratorInterface
{
switch ($hashAlgorithm) {
case 'md5':
$uuid = (string) uuid_generate_md5($ns->toString(), $name);
$uuid = uuid_generate_md5($ns->toString(), $name);
break;
case 'sha1':
$uuid = (string) uuid_generate_sha1($ns->toString(), $name);
$uuid = uuid_generate_sha1($ns->toString(), $name);
break;
default:
@@ -49,6 +49,6 @@ class PeclUuidNameGenerator implements NameGeneratorInterface
));
}
return (string) uuid_parse($uuid);
return uuid_parse($uuid);
}
}