close() public méthode

Closes the output.
public close ( )
Exemple #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();
 }
Exemple #2
0
 /**
  * Closes the input and the outputs.
  */
 public function close()
 {
     $this->input->close();
     $this->output->close();
     $this->errorOutput->close();
 }