Merge ".mailmap: Correct two contributor names"
[mediawiki.git] / includes / page / Hook / CategoryAfterPageAddedHook.php
blob80e360417593330d9026ecd758572e377b0257f4
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 "CategoryAfterPageAdded" to register handlers implementing this interface.
12 * @stable to implement
13 * @ingroup Hooks
15 interface CategoryAfterPageAddedHook {
16 /**
17 * This hook is called after a page is added to a category.
19 * @since 1.35
21 * @param Category $category Category that page was added to
22 * @param WikiPage $wikiPage WikiPage that was added
23 * @return bool|void True or no return value to continue or false to abort
25 public function onCategoryAfterPageAdded( $category, $wikiPage );