ICard.php 447 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * Card interface
  4. *
  5. * Extend the ICard interface to allow your custom nodes to be picked up as
  6. * 'Cards'.
  7. *
  8. * @package Sabre
  9. * @subpackage CardDAV
  10. * @copyright Copyright (C) 2007-2011 Rooftop Solutions. All rights reserved.
  11. * @author Evert Pot (http://www.rooftopsolutions.nl/)
  12. * @license http://code.google.com/p/sabredav/wiki/License Modified BSD License
  13. */
  14. interface Sabre_CardDAV_ICard extends Sabre_DAV_IFile {
  15. }