function xhprof_drush_command in XHProf 6
Same name and namespace in other branches
- 8 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'] = array(
'description' => dt(''),
'arguments' => array(),
);
$items['xhprof-combine'] = array(
'description' => dt(''),
'arguments' => array(),
);
$items['xhprof-clear'] = array(
'description' => dt(''),
'arguments' => array(),
);
return $items;
}