Expose $wgMaxArticleSize in siteinfo query api
[mediawiki.git] / includes / libs / stats / StatsdAwareInterface.php
blobb0b941ae6606963df4aaf050f3ce6916a3a5512c
1 <?php
3 use Liuggio\StatsdClient\Factory\StatsdDataFactoryInterface;
5 /**
6 * Describes a Statsd aware interface
8 * @since 1.27
9 * @author Addshore
11 interface StatsdAwareInterface {
13 /**
14 * Sets a StatsdDataFactory instance on the object
16 * @param StatsdDataFactoryInterface $statsFactory
17 * @return null
19 public function setStatsdDataFactory( StatsdDataFactoryInterface $statsFactory );