You are here

interface ReportInterface in XHProf 8

Defines profiling report.

Hierarchy

Expanded class hierarchy of ReportInterface

All classes that implement ReportInterface

1 file declares its use of ReportInterface
XHProfController.php in src/Controller/XHProfController.php

File

src/XHProfLib/Report/ReportInterface.php, line 8

Namespace

Drupal\xhprof\XHProfLib\Report
View source
interface ReportInterface {

  /**
   * @param int $length
   *
   * @return mixed
   */
  public function getSymbols($length = 100);

  /**
   * @return mixed
   */
  public function getSummary();

  /**
   * @return mixed
   */
  public function getTotals();

  /**
   * @return mixed
   */
  public function getPossibleMetrics();

  /**
   * @return mixed
   */
  public function getMetrics();

  /**
   * @return mixed
   */
  public function getDisplayCalls();

}

Members