wiki.techinc.nl/includes/libs/stats/StatsdAwareInterface.php
addshore d047a9c604 Introduce StatsdAwareInterface
Change-Id: Iac343e4b448d9af852b4c479c35a9ff60359b6d5
2016-04-02 13:29:51 +00:00

21 lines
397 B
PHP

<?php
use Liuggio\StatsdClient\Factory\StatsdDataFactoryInterface;
/**
* Describes a Statsd aware interface
*
* @since 1.27
* @author Addshore
*/
interface StatsdAwareInterface {
/**
* Sets a logger instance on the object
*
* @param StatsdDataFactoryInterface $statsFactory
* @return null
*/
public function setStatsdDataFactory( StatsdDataFactoryInterface $statsFactory );
}