ICard.php 396 B

123456789101112131415161718192021
  1. <?php
  2. declare(strict_types=1);
  3. namespace Sabre\CardDAV;
  4. use Sabre\DAV;
  5. /**
  6. * Card interface.
  7. *
  8. * Extend the ICard interface to allow your custom nodes to be picked up as
  9. * 'Cards'.
  10. *
  11. * @copyright Copyright (C) fruux GmbH (https://fruux.com/)
  12. * @author Evert Pot (http://evertpot.com/)
  13. * @license http://sabre.io/license/ Modified BSD License
  14. */
  15. interface ICard extends DAV\IFile
  16. {
  17. }