Merge "Refactor ContributionsSpecialPage->contributionsSub to support markup overrides"
[mediawiki.git] / includes / api / Hook / APIQuerySiteInfoStatisticsInfoHook.php
blob3dbc2ecea457d1964ba0c31729ec07336f150172
1 <?php
3 namespace MediaWiki\Api\Hook;
5 /**
6 * This is a hook handler interface, see docs/Hooks.md.
7 * Use the hook name "APIQuerySiteInfoStatisticsInfo" to register handlers implementing this interface.
9 * @stable to implement
10 * @ingroup Hooks
12 interface APIQuerySiteInfoStatisticsInfoHook {
13 /**
14 * Use this hook to add extra information to the site's statistics information.
16 * @since 1.35
18 * @param array &$results Array of results, add things here
19 * @return bool|void True or no return value to continue or false to abort
21 public function onAPIQuerySiteInfoStatisticsInfo( &$results );