class DiffParser in XHProf 8
Class DiffParser
Hierarchy
- class \Drupal\xhprof\XHProfLib\Parser\BaseParser implements ParserInterface
- class \Drupal\xhprof\XHProfLib\Parser\DiffParser
Expanded class hierarchy of DiffParser
1 file declares its use of DiffParser
- ReportEngine.php in src/
XHProfLib/ Report/ ReportEngine.php
File
- src/
XHProfLib/ Parser/ DiffParser.php, line 10
Namespace
Drupal\xhprof\XHProfLib\ParserView source
class DiffParser extends BaseParser {
/**
* @param \Drupal\xhprof\XHProfLib\Run $run
* @param $sort
* @param $symbol
*/
public function __construct(Run $run, $sort, $symbol) {
parent::__construct($run, $sort, $symbol);
$this->diff_mode = TRUE;
}
/**
*
*/
public function parse() {
// TODO: Implement parse() method.
}
}