You are here

public function StreamDecoratorTrait::tell in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/guzzlehttp/psr7/src/StreamDecoratorTrait.php \GuzzleHttp\Psr7\StreamDecoratorTrait::tell()
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();
}