forked from friendica/friendica-addons
17 lines
400 B
PHP
17 lines
400 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Base class for all elements
|
||
|
*
|
||
|
* @package Sabre
|
||
|
* @subpackage VObject
|
||
|
* @copyright Copyright (C) 2007-2012 Rooftop Solutions. All rights reserved.
|
||
|
* @author Evert Pot (http://www.rooftopsolutions.nl/)
|
||
|
* @license http://code.google.com/p/sabredav/wiki/License Modified BSD License
|
||
|
*/
|
||
|
abstract class Sabre_VObject_Element extends Sabre_VObject_Node {
|
||
|
|
||
|
public $parent = null;
|
||
|
|
||
|
}
|