Advertisement
repente

Untitled

Jun 19th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. <?php
  2.  
  3. namespace My\Dice;
  4.  
  5. /**
  6. * A interface for a classes supporting histogram reports.
  7. */
  8. interface DiceHistogramInterface
  9. {
  10. /**
  11. * Get the serie.
  12. *
  13. * @return array with the serie.
  14. */
  15. public function getHistogramSerie();
  16.  
  17.  
  18.  
  19. /**
  20. * Get min value for the histogram.
  21. *
  22. * @return int with the min value.
  23. */
  24. public function getHistogramMin();
  25.  
  26.  
  27.  
  28. /**
  29. * Get max value for the histogram.
  30. *
  31. * @return int with the max value.
  32. */
  33. public function getHistogramMax();
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement