You are here

public function StreamDecoratorTrait::eof in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/guzzlehttp/psr7/src/StreamDecoratorTrait.php \GuzzleHttp\Psr7\StreamDecoratorTrait::eof()
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();
}