function coder_drush_command in Coder 5.2
Same name and namespace in other branches
- 6.2 coder.drush.inc \coder_drush_command()
- 6 coder.drush.inc \coder_drush_command()
- 7.2 coder.drush.inc \coder_drush_command()
- 7 coder.drush.inc \coder_drush_command()
Implementation of hook_drush_command().
File
- ./
coder.drush.inc, line 5
Code
function coder_drush_command() {
$items['coder'] = array(
'callback' => 'coder_drush_review',
'description' => dt('Run code reviews'),
);
return $items;
}