3 namespace MediaWiki\Page\Hook
;
8 * This is a hook handler interface, see docs/Hooks.md.
9 * Use the hook name "ShowMissingArticle" to register handlers implementing this interface.
11 * @stable to implement
14 interface ShowMissingArticleHook
{
16 * This hook is called when generating the output for a non-existent page.
20 * @param Article $article Article corresponding to the page
21 * @return bool|void True or no return value to continue or false to abort
23 public function onShowMissingArticle( $article );