close() public method

Closes the output.
public close ( )
示例#1
0
 public function testClose()
 {
     $stream = $this->getMock('Webmozart\\Console\\Api\\IO\\OutputStream');
     $stream->expects($this->once())->method('close');
     $this->output->setStream($stream);
     $this->output->close();
 }
示例#2
0
文件: IO.php 项目: webmozart/console
 /**
  * Closes the input and the outputs.
  */
 public function close()
 {
     $this->input->close();
     $this->output->close();
     $this->errorOutput->close();
 }