You are here

function coder_review_drush_help in Coder 7.2

Same name and namespace in other branches
  1. 7 coder_review/coder_review.drush.inc \coder_review_drush_help()

Implements hook_drush_help().

File

coder_review/coder_review.drush.inc, line 64
Command line utility support for Coder_review module.

Code

function coder_review_drush_help($section) {
  switch ($section) {
    case 'drush:coder-review':
      $help = dt('This comand will execute Coder reviews on a given path, using Drupal Coding Standard definitions.');

      // @todo What else should be added to the help message?  Popular options?
      return $help;
  }
}