public PoStreamWriter::getURI()
Implements Drupal\Component\Gettext\PoStreamInterface::getURI().
Throws
Exception If the URI is not set.
Overrides PoStreamInterface::getURI
File
- core/lib/Drupal/Component/Gettext/PoStreamWriter.php, line 143
Class
- PoStreamWriter
- Defines a Gettext PO stream writer.
Namespace
Drupal\Component\Gettext
Code
public function getURI() {
if (empty($this->_uri)) {
throw new Exception('No URI set.');
}
return $this->_uri;
}
Please login to continue.