You are here

function xhprof_drush_command in XHProf 8

Same name and namespace in other branches
  1. 6 xhprof.drush.inc \xhprof_drush_command()
  2. 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;
}