wiki.techinc.nl/includes/libs/Stats/StatsdAwareInterface.php
Cole White 2cd85cdf99 Stats: move stats library into Stats folder
Bug: T240685
Change-Id: I7f4b649e6858ca65e6d8b43a05b682a414986e7e
2023-02-27 16:40:57 +00:00

23 lines
435 B
PHP

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