Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2
3namespace MediaWiki\Diff\Hook;
4
5use DifferenceEngine;
6use MediaWiki\Output\OutputPage;
7use MediaWiki\Parser\ParserOutput;
8use WikiPage;
9
10/**
11 * This is a hook handler interface, see docs/Hooks.md.
12 * Use the hook name "DifferenceEngineRenderRevisionAddParserOutput" to register handlers implementing this interface.
13 *
14 * @stable to implement
15 * @ingroup Hooks
16 */
17interface DifferenceEngineRenderRevisionAddParserOutputHook {
18    /**
19     * Use this hook to change the parser output.
20     *
21     * @since 1.35
22     *
23     * @param DifferenceEngine $differenceEngine
24     * @param OutputPage $out
25     * @param ParserOutput $parserOutput
26     * @param WikiPage $wikiPage
27     * @return bool|void True or no return value to continue, or false to not add parser output via
28     *   OutputPage's addParserOutput method
29     */
30    public function onDifferenceEngineRenderRevisionAddParserOutput(
31        $differenceEngine, $out, $parserOutput, $wikiPage
32    );
33}