stream_close() public method

This method is called in response to fclose(). All resources that were locked, or allocated, by the wrapper should be released.
public stream_close ( ) : void
return void
 /**
  * @test
  */
 public function stream_closeTest()
 {
     $this->mockStreamWrapper->expects($this->once())->method('close');
     $this->streamWrapperAdapter->stream_close();
 }