Merge "Refactor ContributionsSpecialPage->contributionsSub to support markup overrides"
[mediawiki.git] / includes / api / Hook / ApiValidatePasswordHook.php
blobe24993155244d2fe463c475825d71cf0b90f939c
1 <?php
3 namespace MediaWiki\Api\Hook;
5 use MediaWiki\Api\ApiValidatePassword;
7 /**
8 * This is a hook handler interface, see docs/Hooks.md.
9 * Use the hook name "ApiValidatePassword" to register handlers implementing this interface.
11 * @stable to implement
12 * @ingroup Hooks
14 interface ApiValidatePasswordHook {
15 /**
16 * This hook is called from ApiValidatePassword.
18 * @since 1.35
20 * @param ApiValidatePassword $module
21 * @param array &$r Result array
22 * @return bool|void True or no return value to continue or false to abort
24 public function onApiValidatePassword( $module, &$r );