From 87ba47a717c12fa6d1ae0cdd9cc5fe223a64a4d7 Mon Sep 17 00:00:00 2001 From: ghost Date: Wed, 14 Feb 2024 17:06:08 +0200 Subject: [PATCH] fix _crc32 input data type --- src/Manticore.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Manticore.php b/src/Manticore.php index e12de1a..fcf8059 100644 --- a/src/Manticore.php +++ b/src/Manticore.php @@ -230,7 +230,7 @@ class Manticore ); } - private function _crc32(mixed $value): int + private function _crc32(string $value): int { return crc32( $value