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
23 lines
441 B
PHP
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 );
|
|
|
|
}
|