XmlConfig.php 419 B

123456789101112131415161718192021222324252627
  1. <?php
  2. namespace OSS\Model;
  3. /**
  4. * Interface XmlConfig
  5. * @package OSS\Model
  6. */
  7. interface XmlConfig
  8. {
  9. /**
  10. * Interface method: Parse the object from the xml.
  11. *
  12. * @param string $strXml
  13. * @return null
  14. */
  15. public function parseFromXml($strXml);
  16. /**
  17. * Interface method: Serialize the object into xml.
  18. *
  19. * @return string
  20. */
  21. public function serializeToXml();
  22. }