You are here

function coder_drush_help in Coder 7.2

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

Implements hook_drush_help().

File

./coder.drush.inc, line 33
Drush integration for Coder module.

Code

function coder_drush_help($section) {
  switch ($section) {
    case 'drush:coder-format':
      return dt('Re-format and rewrite code according Drupal coding standards.');
  }
}