1
0
Fork 0
mirror of synced 2025-04-05 06:03:34 +03:00

Update hash method

This commit is contained in:
Akolzin Dmitry 2021-04-16 09:59:35 +03:00 committed by GitHub
parent f44bc2479c
commit 6f40980067
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -63,6 +63,6 @@ class LockableMessageMiddleware implements MiddlewareInterface
*/
private function hash(LockableMessage $message): string
{
return hash('crc32c', serialize($message));
return hash('crc32', serialize($message));
}
}