MiniAsset\Cli\BaseTask::verbose PHP Метод

verbose() публичный Метод

Output verbose information.
public verbose ( string $text, string $short = '' )
$text string The text to output.
$short string The short alternative.
    public function verbose($text, $short = '')
    {
        if (!$this->cli->arguments->defined('verbose')) {
            if (strlen($short)) {
                $this->cli->inline($short);
            }
            return;
        }
        $this->cli->out($text);
    }