3 namespace MediaWiki\Page\Hook
;
8 * This is a hook handler interface, see docs/Hooks.md.
9 * Use the hook name "ArticlePurge" to register handlers implementing this interface.
11 * @stable to implement
14 interface ArticlePurgeHook
{
16 * This hook is called before executing "&action=purge".
20 * @param WikiPage $wikiPage WikiPage to purge
21 * @return bool|void True or no return value to continue or false to abort
23 public function onArticlePurge( $wikiPage );