xref: /plugin/davcal/vendor/sabre/dav/lib/CardDAV/ICard.php (revision 185e2535914616e98630b0777145a3e6d5c8d81b)
1<?php
2
3namespace Sabre\CardDAV;
4
5use Sabre\DAV;
6
7/**
8 * Card interface
9 *
10 * Extend the ICard interface to allow your custom nodes to be picked up as
11 * 'Cards'.
12 *
13 * @copyright Copyright (C) 2007-2015 fruux GmbH (https://fruux.com/).
14 * @author Evert Pot (http://evertpot.com/)
15 * @license http://sabre.io/license/ Modified BSD License
16 */
17interface ICard extends DAV\IFile {
18
19}
20