friendica-addons/dav/sabre-vobject/lib/Sabre/VObject/Element.php

17 lines
357 B
PHP
Raw Normal View History

2012-06-03 20:19:28 +02:00
<?php
namespace Sabre\VObject;
2012-06-03 20:19:28 +02:00
/**
* Base class for all elements
*
* @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 Element extends Node {
2012-06-03 20:19:28 +02:00
public $parent = null;
}