Jackalope\BinaryStreamWrapper::stream_close PHP Метод

stream_close() публичный Метод

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