phplinter\CLI::msg PHP Method

msg() protected method

----------------------------------------------------------------------+
protected msg ( $msg, $flag = OPT_VERBOSE )
    protected function msg($msg, $flag = OPT_VERBOSE)
    {
        if (!$this->config->check(OPT_QUIET)) {
            if ($flag && !$this->config->check($flag)) {
                return;
            }
            echo $msg;
        }
    }