qtools_profiler-8.x-1.x-dev/src/XHProfLib/Report/ReportInterface.php
src/XHProfLib/Report/ReportInterface.php
<?php
namespace Drupal\qtools_profiler\XHProfLib\Report;
/**
* Interface ReportInterface
*/
interface ReportInterface {
/**
* @param $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();
}
