function xhprof_drush_command in XHProf 8
Same name and namespace in other branches
- 6 xhprof.drush.inc \xhprof_drush_command()
- 7 xhprof.drush.inc \xhprof_drush_command()
Implements hook_drush_command().
File
- ./
xhprof.drush.inc, line 10
Code
function xhprof_drush_command() {
$items['xhprof-list'] = [
'description' => dt('List the runs in file storage.'),
'arguments' => [],
];
$items['xhprof-combine'] = [
'description' => dt('Aggregate data from multiple runs.'),
'arguments' => [],
];
$items['xhprof-clear'] = [
'description' => dt('Delete run files.'),
'arguments' => [],
];
return $items;
}