You are here

public function ReadOnlyStream::getUri in Drupal 9

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

Class

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

Namespace

Drupal\Core\StreamWrapper

Code

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