wiki.techinc.nl/includes/libs/stats/StatsdAwareInterface.php
daniel 442fb30ce1 Stability annotations for interfaces.
Per the Stable Interface Policy, PHP interfaces should not be
directly implemented by extensions, unless they are marked to be safe
for that purpose.

Bug: T247862
Change-Id: Idd5783b70fc00c03d57f5b1a887f0e47c4d7b146
2020-07-07 22:01:29 +00:00

23 lines
441 B
PHP

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