3 namespace MediaWiki\Hook
;
5 use MediaWiki\User\User
;
8 * This is a hook handler interface, see docs/Hooks.md.
9 * Use the hook name "PasswordPoliciesForUser" to register handlers implementing this interface.
11 * @stable to implement
14 interface PasswordPoliciesForUserHook
{
16 * Use this hook to alter the effective password policy for a user.
20 * @param User $user User whose policy you are modifying
21 * @param array &$effectivePolicy Array of policy statements that apply to this user
22 * @return bool|void True or no return value to continue or false to abort
24 public function onPasswordPoliciesForUser( $user, &$effectivePolicy );