diff --git a/app/util/Strs.php b/app/util/Strs.php index b1dcce9..5c18743 100644 --- a/app/util/Strs.php +++ b/app/util/Strs.php @@ -20,7 +20,7 @@ class Strs { * @return string */ public static function uuid(): string { - $charId = md5(uniqid(mt_rand(), true)); + $charId = md5(uniqid(strval(mt_rand()), true)); $hyphen = chr(45); $uuid = chr(123) . substr($charId, 0, 8) . $hyphen