public function S3fsStream::getUri in S3 File System 4.0.x
Same name and namespace in other branches
- 8.3 src/StreamWrapper/S3fsStream.php \Drupal\s3fs\StreamWrapper\S3fsStream::getUri()
- 8.2 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 - Flushes the output.
File
- src/
StreamWrapper/ S3fsStream.php, line 337
Class
- S3fsStream
- Defines a Drupal s3 (s3://) stream wrapper class.
Namespace
Drupal\s3fs\StreamWrapperCode
public function getUri() {
return $this->uri;
}