You are here

public function StreamDecoratorTrait::close in Lockr 7.3

1 method overrides StreamDecoratorTrait::close()
CachingStream::close in vendor/guzzlehttp/psr7/src/CachingStream.php
Close both the remote stream and buffer stream

File

vendor/guzzlehttp/psr7/src/StreamDecoratorTrait.php, line 74

Class

StreamDecoratorTrait
Stream decorator trait @property StreamInterface stream

Namespace

GuzzleHttp\Psr7

Code

public function close() {
  $this->stream
    ->close();
}