Hash: rm unnecessary casting to int

This commit is contained in:
terrafrost 2024-08-25 18:15:18 -05:00
parent 70416554a4
commit b500726ce8

View File

@ -788,7 +788,7 @@ class Hash
$i += 8; $i += 8;
} }
return pack('J', self::add64($y, (int) $length)); return pack('J', self::add64($y, $length));
} }
/** /**