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