You are here

function xhprof_drush_command in XHProf 7

Same name and namespace in other branches
  1. 8 xhprof.drush.inc \xhprof_drush_command()
  2. 6 xhprof.drush.inc \xhprof_drush_command()

Implements hook_drush_command().

File

./xhprof.drush.inc, line 10

Code

function xhprof_drush_command() {
  $items['xhprof-list'] = array(
    'description' => dt(''),
    'arguments' => array(),
  );
  $items['xhprof-combine'] = array(
    'description' => dt(''),
    'arguments' => array(),
  );
  $items['xhprof-clear'] = array(
    'description' => dt(''),
    'arguments' => array(),
  );
  return $items;
}