Jackalope\BinaryStreamWrapper::stream_close PHP Method

stream_close() public method

Close this stream if it was initialized
public stream_close ( )
    public function stream_close()
    {
        if ($this->stream) {
            fclose($this->stream);
        }
    }