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\CheckUser\Hook;
4
5use IContextSource;
6
7interface CheckUserSubtitleLinksHook {
8    /**
9     * Use this hook to modify the subtitle links on Special:Investigate.
10     *
11     * @since 1.36
12     *
13     * @param IContextSource $context
14     * @param string[] &$links
15     */
16    public function onCheckUserSubtitleLinks(
17        IContextSource $context,
18        array &$links
19    );
20}