You are here

public function HttpStreamWrapper::stream_eof in Remote Stream Wrapper 8

Return value

bool

Overrides PhpStreamWrapperInterface::stream_eof

File

src/StreamWrapper/HttpStreamWrapper.php, line 115

Class

HttpStreamWrapper
HTTP(s) stream wrapper.

Namespace

Drupal\remote_stream_wrapper\StreamWrapper

Code

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