diff options
Diffstat (limited to 'vendor/sabre/dav/lib/CardDAV/ICard.php')
-rw-r--r-- | vendor/sabre/dav/lib/CardDAV/ICard.php | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/vendor/sabre/dav/lib/CardDAV/ICard.php b/vendor/sabre/dav/lib/CardDAV/ICard.php new file mode 100644 index 000000000..a974cbd8f --- /dev/null +++ b/vendor/sabre/dav/lib/CardDAV/ICard.php @@ -0,0 +1,19 @@ +<?php + +namespace Sabre\CardDAV; + +use Sabre\DAV; + +/** + * Card interface + * + * Extend the ICard interface to allow your custom nodes to be picked up as + * 'Cards'. + * + * @copyright Copyright (C) fruux GmbH (https://fruux.com/) + * @author Evert Pot (http://evertpot.com/) + * @license http://sabre.io/license/ Modified BSD License + */ +interface ICard extends DAV\IFile { + +} |