wiki.techinc.nl/includes/diff/Hook/DifferenceEngineRenderRevisionAddParserOutputHook.php
apaskulin c44488f725 docs: Hook interface doc comment review
Edited doc comments for hook interfaces to improve
consistency and add type hints.

Bug: T246855
Change-Id: I38fa802463cd6f39bf5946dbbeb1b3ebaea604b2
2020-04-21 09:10:08 +10:00

30 lines
713 B
PHP

<?php
namespace MediaWiki\Diff\Hook;
use DifferenceEngine;
use OutputPage;
use ParserOutput;
use WikiPage;
/**
* @stable for implementation
* @ingroup Hooks
*/
interface DifferenceEngineRenderRevisionAddParserOutputHook {
/**
* Use this hook to change the parser output.
*
* @since 1.35
*
* @param DifferenceEngine $differenceEngine
* @param OutputPage $out
* @param ParserOutput $parserOutput
* @param WikiPage $wikiPage
* @return bool|void True or no return value to continue, or false to not add parser output via
* OutputPage's addParserOutput method
*/
public function onDifferenceEngineRenderRevisionAddParserOutput(
$differenceEngine, $out, $parserOutput, $wikiPage
);
}