IDirectory.php 533 B

12345678910111213141516171819202122
  1. <?php
  2. declare(strict_types=1);
  3. namespace Sabre\CardDAV;
  4. /**
  5. * IDirectory interface.
  6. *
  7. * Implement this interface to have an addressbook marked as a 'directory'. A
  8. * directory is an (often) global addressbook.
  9. *
  10. * A full description can be found in the IETF draft:
  11. * - draft-daboo-carddav-directory-gateway
  12. *
  13. * @copyright Copyright (C) fruux GmbH (https://fruux.com/)
  14. * @author Evert Pot (http://evertpot.com/)
  15. * @license http://sabre.io/license/ Modified BSD License
  16. */
  17. interface IDirectory extends IAddressBook
  18. {
  19. }