ParsoidParser: Record ParserOptions watcher on ParserOutput object
[mediawiki.git] / includes / Hook / TitleExistsHook.php
blobc1ad755a424f6f7e1e7db26d9239651796f4f7cc
1 <?php
3 namespace MediaWiki\Hook;
5 use MediaWiki\Title\Title;
7 /**
8 * This is a hook handler interface, see docs/Hooks.md.
9 * Use the hook name "TitleExists" to register handlers implementing this interface.
11 * @stable to implement
12 * @ingroup Hooks
14 interface TitleExistsHook {
15 /**
16 * This hook is called when determining whether a page exists at a given title.
18 * @since 1.35
20 * @param Title $title Title being tested
21 * @param bool &$exists Whether the title exists
22 * @return bool|void True or no return value to continue or false to abort
24 public function onTitleExists( $title, &$exists );