Merge "mediawiki.api: Remove console warning for legacy token type"
[mediawiki.git] / includes / page / Hook / CategoryAfterPageRemovedHook.php
blobcc3f759c7faffacffe5aab5c475e77f7475f8c68
1 <?php
3 namespace MediaWiki\Page\Hook;
5 use MediaWiki\Category\Category;
6 use WikiPage;
8 /**
9 * This is a hook handler interface, see docs/Hooks.md.
10 * Use the hook name "CategoryAfterPageRemoved" to register handlers implementing this interface.
12 * @stable to implement
13 * @ingroup Hooks
15 interface CategoryAfterPageRemovedHook {
16 /**
17 * This hook is called after a page is removed from a category.
19 * @since 1.35
21 * @param Category $category Category that page was removed from
22 * @param WikiPage $wikiPage WikiPage that was removed
23 * @param int $id Page ID (original ID in case of page deletions)
24 * @return bool|void True or no return value to continue or false to abort
26 public function onCategoryAfterPageRemoved( $category, $wikiPage, $id );