Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2
3use Liuggio\StatsdClient\Factory\StatsdDataFactoryInterface;
4
5/**
6 * Describes a Statsd aware interface
7 *
8 * @stable to implement
9 *
10 * @since 1.27
11 * @author Addshore
12 */
13interface StatsdAwareInterface {
14
15    /**
16     * Sets a StatsdDataFactory instance on the object
17     *
18     * @param StatsdDataFactoryInterface $statsFactory
19     * @return null
20     */
21    public function setStatsdDataFactory( StatsdDataFactoryInterface $statsFactory );
22
23}