Codesleeve\AssetPipeline\Commands\AssetsCleanCommand::writeln PHP Method

writeln() protected method

Output messages to the user if verbose is on
protected writeln ( `[type] $message ) : [type]
$message `[type]
return [type]
    protected function writeln($message)
    {
        if ($this->verbose) {
            echo $message . PHP_EOL;
        }
    }