Element.php 549 B

12345678910111213141516171819202122
  1. <?php
  2. declare(strict_types=1);
  3. namespace Sabre\Xml;
  4. /**
  5. * This is the XML element interface.
  6. *
  7. * Elements are responsible for serializing and deserializing part of an XML
  8. * document into PHP values.
  9. *
  10. * It combines XmlSerializable and XmlDeserializable into one logical class
  11. * that does both.
  12. *
  13. * @copyright Copyright (C) 2009-2015 fruux GmbH (https://fruux.com/).
  14. * @author Evert Pot (http://evertpot.com/)
  15. * @license http://sabre.io/license/ Modified BSD License
  16. */
  17. interface Element extends XmlSerializable, XmlDeserializable
  18. {
  19. }