public function PoStreamReader::close in Localization update 7.2
Implements PoStreamInterface::close().
Throws
Exception If the stream is not open.
Overrides PoStreamInterface::close
File
- includes/
gettext/ PoStreamReader.php, line 177 - Contains \Drupal\Component\Gettext\PoStreamReader.
Class
- PoStreamReader
- Implements Gettext PO stream reader.
Code
public function close() {
if ($this->_fd) {
fclose($this->_fd);
}
else {
throw new \Exception('Cannot close stream that is not open.');
}
}