public function Stream::getUri

Get the URI/filename associated with this stream

Return value

string

Overrides StreamInterface::getUri

2 calls to Stream::getUri()
EntityBody::getContentType in drupal/core/vendor/guzzle/http/Guzzle/Http/EntityBody.php
Guess the Content-Type or return the default application/octet-stream
Stream::getSize in drupal/core/vendor/guzzle/stream/Guzzle/Stream/Stream.php
Get the size of the stream if able

File

drupal/core/vendor/guzzle/stream/Guzzle/Stream/Stream.php, line 177

Class

Stream
PHP stream implementation

Namespace

Guzzle\Stream

Code

public function getUri() {
  return $this->cache['uri'];
}