wiki.techinc.nl/includes/libs/stats/StatsdAwareInterface.php
addshore ac47ff47f8 Fix phpdoc in StatsdAwareInterface
Change-Id: Ibb3cac402f2cbe723b79785f4d3bbcb9c0b10ebe
2016-04-06 15:59:53 +00:00

21 lines
408 B
PHP

<?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 );
}