Password hashing algorithm identifiers are now nullable strings rather than integers.
- PASSWORD_DEFAULT was int 1; now is null
- PASSWORD_BCRYPT was int 1; now is string '2y'
- PASSWORD_ARGON2I was int 2; now is string 'argon2i'
- PASSWORD_ARGON2ID was int 3; now is string 'argon2id'
https://github.com/php/php-src/blob/39a0854307cd63685b2fe158207727a2b8c06cd7/UPGRADING#L120-L130