WordPress\AiClientDependencies\Nyholm\Psr7

Stream::eofpublicWP 1.0

Method of the class: Stream{}

No Hooks.

Returns

null. Nothing (null).

Usage

$Stream = new Stream();
$Stream->eof(): bool;

Stream::eof() code WP 7.0

public function eof(): bool
{
    return !isset($this->stream) || \feof($this->stream);
}