ConsoleKit\FormatedWriter::writeln PHP Method

writeln() public method

Writes a line of text
See also: TextWriter::writeln()
public writeln ( string $text = '', $pipe = TextWriter::STDOUT ) : Command
$text string
return Command
    public function writeln($text = '', $pipe = TextWriter::STDOUT)
    {
        $this->textWriter->writeln($this->format($text), $pipe);
        return $this;
    }