report.php 768 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. /**
  3. * @return object
  4. * @param mixed[] $executionList
  5. * @param mixed[] $items
  6. */
  7. public function getMetricsCount($executionList, $items = array())
  8. {
  9. return $this->loadExtension('report')->getMetricsCount($executionList, $items);
  10. }
  11. /**
  12. * @return object
  13. * @param mixed[] $executionList
  14. * @param mixed[] $items
  15. */
  16. public function getMetricsChart($executionList, $items = array())
  17. {
  18. return $this->loadExtension('report')->getMetricsChart($executionList, $items);
  19. }
  20. /**
  21. * @param object $project
  22. * @return object
  23. * @param mixed[] $executionList
  24. * @param mixed[] $items
  25. */
  26. public function getMetricsTable($executionList, $project, $items = array())
  27. {
  28. return $this->loadExtension('report')->getMetricsTable($executionList, $project, $items);
  29. }