pharext\Cli\Command::verbosity PHP Method

verbosity() public method

Verbosity
public verbosity ( ) : boolean
return boolean
    public function verbosity()
    {
        if ($this->args->verbose) {
            return true;
        } elseif ($this->args->quiet) {
            return false;
        } else {
            return null;
        }
    }