wiki.techinc.nl/includes/Hook/ArticleMergeCompleteHook.php
Thiemo Kreuz b4c63c64ae Remove some more comments that literally repeat the code
Nothing to learn from these.

You can find a longer explanation in the comments in I93751e6.

Change-Id: I195aae70fc282b58be5b18160783f27d38605d15
2021-12-09 19:01:36 +01:00

25 lines
620 B
PHP

<?php
namespace MediaWiki\Hook;
use Title;
/**
* This is a hook handler interface, see docs/Hooks.md.
* Use the hook name "ArticleMergeComplete" to register handlers implementing this interface.
*
* @stable to implement
* @ingroup Hooks
*/
interface ArticleMergeCompleteHook {
/**
* This hook is called after merging to article using Special:Mergehistory.
*
* @since 1.35
*
* @param Title $targetTitle
* @param Title $destTitle Destination title
* @return bool|void True or no return value to continue or false to abort
*/
public function onArticleMergeComplete( $targetTitle, $destTitle );
}