You are here

public function StreamDecoratorTrait::tell in Lockr 7.3

3 calls to StreamDecoratorTrait::tell()
CachingStream::cacheEntireStream in vendor/guzzlehttp/psr7/src/CachingStream.php
CachingStream::seek in vendor/guzzlehttp/psr7/src/CachingStream.php
Seek to a position in the stream.
CachingStream::write in vendor/guzzlehttp/psr7/src/CachingStream.php
Write data to the stream.
1 method overrides StreamDecoratorTrait::tell()
LimitStream::tell in vendor/guzzlehttp/psr7/src/LimitStream.php
Give a relative tell()

File

vendor/guzzlehttp/psr7/src/StreamDecoratorTrait.php, line 99

Class

StreamDecoratorTrait
Stream decorator trait @property StreamInterface stream

Namespace

GuzzleHttp\Psr7

Code

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