You are here

function ReadOnlyStream::getUri in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/StreamWrapper/ReadOnlyStream.php \Drupal\Core\StreamWrapper\ReadOnlyStream::getUri()

Returns the stream resource URI.

Return value

string Returns the current URI of the instance.

Overrides StreamWrapperInterface::getUri

File

core/lib/Drupal/Core/StreamWrapper/ReadOnlyStream.php, line 54
Contains \Drupal\Core\StreamWrapper\ReadOnlyStream.

Class

ReadOnlyStream
Defines a read-only Drupal stream wrapper base class.

Namespace

Drupal\Core\StreamWrapper

Code

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