示例#1
0
 /**
  * @param string $string
  */
 function writeCloseStream($string)
 {
     parent::writeCloseStream($string);
     if ($this->handle) {
         fclose($this->handle);
         $this->handle = false;
     }
 }
 /**
  * @param string $string
  */
 function writeCloseStream($string)
 {
     $this->sink->writeCloseStream($string);
 }
示例#3
0
 public function closeStream()
 {
     $output = $this->writer->closeStream();
     $this->sink->writeCloseStream($output);
 }