ConsoleKit\Command::write PHP Method

write() public method

Writes some text to the text writer
See also: format()
public write ( string $text, integer | array $formatOptions = [], integer $pipe = TextWriter::STDOUT ) : Command
$text string
$formatOptions integer | array
$pipe integer
return Command
    public function write($text, $formatOptions = array(), $pipe = TextWriter::STDOUT)
    {
        $this->console->write($this->format($text, $formatOptions), $pipe);
        return $this;
    }