You are here

public function StreamDecoratorTrait::eof in Lockr 7.3

2 methods override StreamDecoratorTrait::eof()
CachingStream::eof in vendor/guzzlehttp/psr7/src/CachingStream.php
Returns true if the stream is at the end of the stream.
LimitStream::eof in vendor/guzzlehttp/psr7/src/LimitStream.php
Returns true if the stream is at the end of the stream.

File

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

Class

StreamDecoratorTrait
Stream decorator trait @property StreamInterface stream

Namespace

GuzzleHttp\Psr7

Code

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