writeLineRaw() public method

Writes a line of text to the standard output without formatting.
public writeLineRaw ( string $string, integer $flags = null )
$string string The string to write. A newline is appended.
$flags integer The flags. One of {@link VERBOSE}, {@link VERY_VERBOSE} and {@link DEBUG}.
Esempio n. 1
0
 private function doWriteLine($message, $type)
 {
     switch ($type) {
         case self::OUTPUT_PLAIN:
             $this->io->writeLine($this->io->removeFormat($message));
             break;
         case self::OUTPUT_RAW:
             $this->io->writeLineRaw($message);
             break;
         default:
             $this->io->writeLine($message);
             break;
     }
 }