PoReaderInterface.php 380 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * @file
  4. * Definition of Drupal\Component\Gettext\PoReaderInterface.
  5. */
  6. /**
  7. * Shared interface definition for all Gettext PO Readers.
  8. */
  9. interface PoReaderInterface extends PoMetadataInterface {
  10. /**
  11. * Reads and returns a PoItem (source/translation pair).
  12. *
  13. * @return PoItem
  14. * Wrapper for item data instance.
  15. */
  16. public function readItem();
  17. }