public function StreamDecoratorTrait::tell in Auth0 Single Sign On 8.2
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\Psr7Code
public function tell() {
return $this->stream
->tell();
}