summaryrefslogtreecommitdiff
path: root/www/wiki/includes/libs/stats/StatsdAwareInterface.php
blob: b0b941ae6606963df4aaf050f3ce6916a3a5512c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php

use Liuggio\StatsdClient\Factory\StatsdDataFactoryInterface;

/**
 * Describes a Statsd aware interface
 *
 * @since 1.27
 * @author Addshore
 */
interface StatsdAwareInterface {

	/**
	 * Sets a StatsdDataFactory instance on the object
	 *
	 * @param StatsdDataFactoryInterface $statsFactory
	 * @return null
	 */
	public function setStatsdDataFactory( StatsdDataFactoryInterface $statsFactory );

}