You are here

public function FlysystemBridge::getUri in Flysystem 8

Same name and namespace in other branches
  1. 7 src/FlysystemBridge.php \Drupal\flysystem\FlysystemBridge::getUri()
  2. 3.x src/FlysystemBridge.php \Drupal\flysystem\FlysystemBridge::getUri()
  3. 2.0.x src/FlysystemBridge.php \Drupal\flysystem\FlysystemBridge::getUri()
  4. 3.0.x src/FlysystemBridge.php \Drupal\flysystem\FlysystemBridge::getUri()

Returns the stream resource URI.

Return value

string Returns the current URI of the instance.

Overrides StreamWrapperInterface::getUri

File

src/FlysystemBridge.php, line 49

Class

FlysystemBridge
An adapter for Flysystem to StreamWrapperInterface.

Namespace

Drupal\flysystem

Code

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