You are here

public function S3fsStream::getUri in S3 File System 8.2

Same name and namespace in other branches
  1. 8.3 src/StreamWrapper/S3fsStream.php \Drupal\s3fs\StreamWrapper\S3fsStream::getUri()
  2. 4.0.x src/StreamWrapper/S3fsStream.php \Drupal\s3fs\StreamWrapper\S3fsStream::getUri()

Returns the stream resource URI, which looks like "<scheme>://filepath".

Return value

string The current URI of the instance.

Overrides StreamWrapperInterface::getUri

File

src/StreamWrapper/S3fsStream.php, line 315

Class

S3fsStream
Defines a Drupal s3fs (s3fs://) stream wrapper class.

Namespace

Drupal\s3fs\StreamWrapper

Code

public function getUri() {
  $this
    ->_debug("getUri() called for {$this->uri}.");
  return $this->uri;
}