ICollection.php 639 B

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