/** * Writes some text to the text writer * * @see format() * @param string $text * @param int|array $formatOptions * @param int $pipe * @return Command */ public function write($text, $formatOptions = array(), $pipe = TextWriter::STDOUT) { $this->console->write($this->format($text, $formatOptions), $pipe); return $this; }
/** * @param $message */ public function log($message) { $out = new Console(); $out->write($message); }