ConsoleKit\Command::writeln PHP Method

writeln() public method

Writes a line of text
public writeln ( string $text, integer | array $formatOptions = [], integer $pipe = TextWriter::STDOUT ) : Command
$text string
$formatOptions integer | array
$pipe integer
return Command
    public function writeln($text, $formatOptions = array(), $pipe = TextWriter::STDOUT)
    {
        $this->console->writeln($this->format($text, $formatOptions), $pipe);
        return $this;
    }