Merge "mediawiki.api: Remove console warning for legacy token type"
[mediawiki.git] / includes / page / Hook / ShowMissingArticleHook.php
blobea7973fc987e974a39551924fab66491711630a7
1 <?php
3 namespace MediaWiki\Page\Hook;
5 use Article;
7 /**
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
12 * @ingroup Hooks
14 interface ShowMissingArticleHook {
15 /**
16 * This hook is called when generating the output for a non-existent page.
18 * @since 1.35
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 );