Problem
purge_users.install uses the (integer) cast on four lines in purge_users_update_9001(). The (integer) cast alias was deprecated in PHP 8.4 — it triggers a deprecation notice on every status report page load:
Deprecated function: Non-canonical cast (integer) is deprecated, use the (int) cast instead
Solution
Replace all four (integer) casts with (int) in purge_users_update_9001().
Issue fork purge_users-3578633
Show commands
Start within a Git clone of the project using the version control instructions.
Or, if you do not have SSH keys set up on git.drupalcode.org:
Comments
Comment #4
mably commented