StatsdAwareInterface.php 408 B

12345678910111213141516171819202122
  1. <?php
  2. use Liuggio\StatsdClient\Factory\StatsdDataFactoryInterface;
  3. /**
  4. * Describes a Statsd aware interface
  5. *
  6. * @since 1.27
  7. * @author Addshore
  8. */
  9. interface StatsdAwareInterface {
  10. /**
  11. * Sets a StatsdDataFactory instance on the object
  12. *
  13. * @param StatsdDataFactoryInterface $statsFactory
  14. * @return null
  15. */
  16. public function setStatsdDataFactory( StatsdDataFactoryInterface $statsFactory );
  17. }