Browse Source

fix _crc32 input data type

main
ghost 9 months ago
parent
commit
87ba47a717
  1. 2
      src/Manticore.php

2
src/Manticore.php

@ -230,7 +230,7 @@ class Manticore @@ -230,7 +230,7 @@ class Manticore
);
}
private function _crc32(mixed $value): int
private function _crc32(string $value): int
{
return crc32(
$value

Loading…
Cancel
Save