diff options
Diffstat (limited to 'vendor/sabre/dav/lib/CalDAV/ICalendarObject.php')
-rw-r--r-- | vendor/sabre/dav/lib/CalDAV/ICalendarObject.php | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/vendor/sabre/dav/lib/CalDAV/ICalendarObject.php b/vendor/sabre/dav/lib/CalDAV/ICalendarObject.php new file mode 100644 index 000000000..b3a767b74 --- /dev/null +++ b/vendor/sabre/dav/lib/CalDAV/ICalendarObject.php @@ -0,0 +1,21 @@ +<?php + +namespace Sabre\CalDAV; + +use Sabre\DAV; + +/** + * CalendarObject interface + * + * Extend the ICalendarObject interface to allow your custom nodes to be picked up as + * CalendarObjects. + * + * Calendar objects are resources such as Events, Todo's or Journals. + * + * @copyright Copyright (C) fruux GmbH (https://fruux.com/) + * @author Evert Pot (http://evertpot.com/) + * @license http://sabre.io/license/ Modified BSD License + */ +interface ICalendarObject extends DAV\IFile { + +} |