]> git.mxchange.org Git - friendica-addons.git/blob - dav/SabreDAV/lib/Sabre/DAV/Property.php
Merge branch '3.6-release'
[friendica-addons.git] / dav / SabreDAV / lib / Sabre / DAV / Property.php
1 <?php
2
3 /**
4  * Abstract property class
5  *
6  * Extend this class to create custom complex properties
7  *
8  * @package Sabre
9  * @subpackage DAV
10  * @copyright Copyright (C) 2007-2012 Rooftop Solutions. All rights reserved.
11  * @author Evert Pot (http://www.rooftopsolutions.nl/)
12  * @license http://code.google.com/p/sabredav/wiki/License Modified BSD License
13  */
14 abstract class Sabre_DAV_Property implements Sabre_DAV_PropertyInterface {
15
16     static function unserialize(DOMElement $prop) {
17
18         throw new Sabre_DAV_Exception('Unserialize has not been implemented for this class');
19
20     }
21
22 }
23