Example #1
0
 /**
  * Constructor.
  *
  * @param string $name   The name of the option
  * @param array  $params An optional array of parameters
  *
  * @return void
  */
 public function __construct($name = null, $params = array()) 
 {
     parent::__construct($name, $params);
     if ($this->action == 'Password') {
         // special case for Password action, password can be passed to the 
         // commandline or prompted by the parser
         $this->argument_optional = true;
     }
 }