You are here

public function S3fsStream::getUri in S3 File System 8.3

Same name and namespace in other branches
  1. 8.2 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

1 call to S3fsStream::getUri()
S3fsStream::stream_flush in src/StreamWrapper/S3fsStream.php

File

src/StreamWrapper/S3fsStream.php, line 337

Class

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

Namespace

Drupal\s3fs\StreamWrapper

Code

public function getUri() {
  return $this->uri;
}