ICollection.php 614 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace Sabre\CalDAV\Notifications;
  3. use Sabre\DAV;
  4. /**
  5. * This node represents a list of notifications.
  6. *
  7. * It provides no additional functionality, but you must implement this
  8. * interface to allow the Notifications plugin to mark the collection
  9. * as a notifications collection.
  10. *
  11. * This collection should only return Sabre\CalDAV\Notifications\INode nodes as
  12. * its children.
  13. *
  14. * @copyright Copyright (C) fruux GmbH (https://fruux.com/)
  15. * @author Evert Pot (http://evertpot.com/)
  16. * @license http://sabre.io/license/ Modified BSD License
  17. */
  18. interface ICollection extends DAV\ICollection {
  19. }