You are here

public function PoStreamReader::getURI in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Component/Gettext/PoStreamReader.php \Drupal\Component\Gettext\PoStreamReader::getURI()

Gets the URI of the PO stream that is being read or written.

Return value

URI string for this stream.

Overrides PoStreamInterface::getURI

1 call to PoStreamReader::getURI()
PoStreamReader::readLine in core/lib/Drupal/Component/Gettext/PoStreamReader.php
Reads a line from the PO stream and stores data internally.

File

core/lib/Drupal/Component/Gettext/PoStreamReader.php, line 132

Class

PoStreamReader
Implements Gettext PO stream reader.

Namespace

Drupal\Component\Gettext

Code

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