You are here

function _coder_drush_set_option in Coder 6.2

Same name and namespace in other branches
  1. 5.2 coder.drush.inc \_coder_drush_set_option()
  2. 6 coder.drush.inc \_coder_drush_set_option()
1 call to _coder_drush_set_option()
coder_drush_review in ./coder.drush.inc

File

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

Code

function _coder_drush_set_option($option) {
  global $_coder_drush_options;
  if (!isset($_coder_drush_options)) {
    $_coder_drush_options = array();
  }
  $_coder_drush_options[$option] = TRUE;
}