public function XHProfController::diffAction in XHProf 8
Renders diff of two runs.
Parameters
\Drupal\xhprof\XHProfLib\Run $run1: The first run.
\Drupal\xhprof\XHProfLib\Run $run2: The second run.
Return value
array A render array.
1 string reference to 'XHProfController::diffAction'
File
- src/
Controller/ XHProfController.php, line 175
Class
- XHProfController
- Displays profiling results.
Namespace
Drupal\xhprof\ControllerCode
public function diffAction(Run $run1, Run $run2) {
return [
'#markup' => 'Not working yet',
];
}