Clinner\Command\Command::setOption PHP Method

setOption() public method

Set a single option for this command.
public setOption ( string $name, mixed $value ) : Command
$name string Name of the option to set.
$value mixed Value for that option.
return Command This instance, for a fluent API.
    public function setOption($name, $value)
    {
        $this->_options->set($name, $value);
        return $this;
    }