You are here

ReportInterface.php in XHProf 8

File

src/XHProfLib/Report/ReportInterface.php
View 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

Namesort descending Description
ReportInterface Defines profiling report.