You are here

function coder_drush_help in Coder 6.2

Same name and namespace in other branches
  1. 7.2 coder.drush.inc \coder_drush_help()
  2. 7 coder.drush.inc \coder_drush_help()

Implements hook_drush_help().

File

./coder.drush.inc, line 11
Command line utility for coder.

Code

function coder_drush_help($section) {
  switch ($section) {
    case 'drush:coder':
      return dt("Review source files for code that doesn't follow Drupal's coding standards or that needs to change due to Drupal API changes. If no arguments specified, the default settings configured at admin/settings/coder will be used.");
  }
}