1
0
Fork 0
mirror of https://git.friendi.ca/friendica/friendica-addons.git synced 2025-07-16 21:38:48 +00:00
friendica-addons/dav/sabre-vobject/lib/Sabre/VObject/Element.php

16 lines
357 B
PHP

<?php
namespace Sabre\VObject;
/**
* 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 {
public $parent = null;
}