ICalendarObject.php 506 B

1234567891011121314151617181920212223
  1. <?php
  2. declare(strict_types=1);
  3. namespace Sabre\CalDAV;
  4. use Sabre\DAV;
  5. /**
  6. * CalendarObject interface.
  7. *
  8. * Extend the ICalendarObject interface to allow your custom nodes to be picked up as
  9. * CalendarObjects.
  10. *
  11. * Calendar objects are resources such as Events, Todo's or Journals.
  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 ICalendarObject extends DAV\IFile
  18. {
  19. }