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