wiki.techinc.nl/includes/libs/Stats/StatsdAwareInterface.php

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
435 B
PHP
Raw Normal View History

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