Merge "Added a separate error message for mkdir failures"
[lhc/web/wiklou.git] / includes / libs / stats / StatsdAwareInterface.php
1 <?php
2
3 use Liuggio\StatsdClient\Factory\StatsdDataFactoryInterface;
4
5 /**
6 * Describes a Statsd aware interface
7 *
8 * @since 1.27
9 * @author Addshore
10 */
11 interface StatsdAwareInterface {
12
13 /**
14 * Sets a StatsdDataFactory instance on the object
15 *
16 * @param StatsdDataFactoryInterface $statsFactory
17 * @return null
18 */
19 public function setStatsdDataFactory( StatsdDataFactoryInterface $statsFactory );
20
21 }