public function PumpStream::eof in Auth0 Single Sign On 8.2
Returns true if the stream is at the end of the stream.
Return value
bool
Overrides StreamInterface::eof
1 call to PumpStream::eof()
- PumpStream::getContents in vendor/
guzzlehttp/ psr7/ src/ PumpStream.php - Returns the remaining contents in a string
File
- vendor/
guzzlehttp/ psr7/ src/ PumpStream.php, line 81
Class
- PumpStream
- Provides a read only stream that pumps data from a PHP callable.
Namespace
GuzzleHttp\Psr7Code
public function eof() {
return !$this->source;
}