You are here

function coder_drush_command in Coder 6

Same name and namespace in other branches
  1. 5.2 coder.drush.inc \coder_drush_command()
  2. 6.2 coder.drush.inc \coder_drush_command()
  3. 7.2 coder.drush.inc \coder_drush_command()
  4. 7 coder.drush.inc \coder_drush_command()

Implementation of hook_drush_command().

File

./coder.drush.inc, line 6

Code

function coder_drush_command() {
  $items['coder'] = array(
    'callback' => 'coder_drush_review',
    'description' => dt('Run code reviews'),
  );
  return $items;
}