ReportInterface.php in XHProf 8
Namespace
Drupal\xhprof\XHProfLib\ReportFile
src/XHProfLib/Report/ReportInterface.phpView source
<?php
namespace Drupal\xhprof\XHProfLib\Report;
/**
 * Defines profiling report.
 */
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();
}Interfaces
| 
            Name | 
                  Description | 
|---|---|
| ReportInterface | Defines profiling report. |