Esempio n. 1
0
 /**
  * @param string $buf
  * @param int $off
  * @param int $len
  */
 private function write($buf, $off = null, $len = null)
 {
     $this->textOut->write($buf, $off, $len);
     if ($this->autoFlush || ($buff = '\\n' && $this->autoFlush)) {
         $this->textOut->flush();
     }
 }
 /**
  *
  */
 private function newLine()
 {
     $this->textOut->newLine();
     if ($this->autoFlush) {
         $this->textOut->flush();
     }
 }