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;
6use stdClass;
7
8interface CheckUserFormatRowHook {
9    /**
10     * Use this hook to modify a row in the Timeline pager for Special:Investigate.
11     *
12     * @since 1.35
13     *
14     * @param IContextSource $context
15     * @param stdClass $row
16     * @param string[][] &$rowItems
17     */
18    public function onCheckUserFormatRow(
19        IContextSource $context,
20        stdClass $row,
21        array &$rowItems
22    );
23}