ParsoidParser: Record ParserOptions watcher on ParserOutput object
[mediawiki.git] / includes / Hook / SetupAfterCacheHook.php
blobd7a31e3773d6b3feb5eaeb17c828051f39e3031a
1 <?php
3 namespace MediaWiki\Hook;
5 /**
6 * This is a hook handler interface, see docs/Hooks.md.
7 * Use the hook name "SetupAfterCache" to register handlers implementing this interface.
9 * @stable to implement
10 * @ingroup Hooks
12 interface SetupAfterCacheHook {
13 /**
14 * This hook is called in Setup.php, after cache objects are set.
16 * @since 1.35
18 * @return bool|void True or no return value to continue or false to abort
20 public function onSetupAfterCache();