aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/sabre/dav/lib/Sabre/DAV/PropertyInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/sabre/dav/lib/Sabre/DAV/PropertyInterface.php')
-rw-r--r--vendor/sabre/dav/lib/Sabre/DAV/PropertyInterface.php21
1 files changed, 21 insertions, 0 deletions
diff --git a/vendor/sabre/dav/lib/Sabre/DAV/PropertyInterface.php b/vendor/sabre/dav/lib/Sabre/DAV/PropertyInterface.php
new file mode 100644
index 000000000..856e643f3
--- /dev/null
+++ b/vendor/sabre/dav/lib/Sabre/DAV/PropertyInterface.php
@@ -0,0 +1,21 @@
+<?php
+
+namespace Sabre\DAV;
+
+/**
+ * PropertyInterface
+ *
+ * Implement this interface to create new complex properties
+ *
+ * @copyright Copyright (C) 2007-2013 fruux GmbH (https://fruux.com/).
+ * @author Evert Pot (http://evertpot.com/)
+ * @license http://code.google.com/p/sabredav/wiki/License Modified BSD License
+ */
+interface PropertyInterface {
+
+ public function serialize(Server $server, \DOMElement $prop);
+
+ static function unserialize(\DOMElement $prop);
+
+}
+