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
5/**
6 * This is a hook handler interface, see docs/Hooks.md.
7 * Use the hook name "DifferenceEngineRenderRevisionShowFinalPatrolLink" to register
8 * handlers implementing this interface.
9 *
10 * @stable to implement
11 * @ingroup Hooks
12 */
13interface DifferenceEngineRenderRevisionShowFinalPatrolLinkHook {
14    /**
15     * Use this hook to not show the final "mark as patrolled" link on the bottom of a page.
16     * This hook has no arguments.
17     *
18     * @since 1.35
19     *
20     * @return bool|void True or no return value to continue, or false to not show the final
21     *   "mark as patrolled" link
22     */
23    public function onDifferenceEngineRenderRevisionShowFinalPatrolLink();
24}