public function StreamDecoratorTrait::eof in Auth0 Single Sign On 8.2
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\Psr7Code
public function eof() {
return $this->stream
->eof();
}