You are here

public function HttpStreamWrapper::stream_tell in Remote Stream Wrapper 8

Return value

int

Overrides PhpStreamWrapperInterface::stream_tell

File

src/StreamWrapper/HttpStreamWrapper.php, line 265

Class

HttpStreamWrapper
HTTP(s) stream wrapper.

Namespace

Drupal\remote_stream_wrapper\StreamWrapper

Code

public function stream_tell() {
  return $this->stream
    ->tell();
}