ICalendar.php 423 B

1234567891011121314151617181920
  1. <?php
  2. declare(strict_types=1);
  3. namespace Sabre\CalDAV;
  4. use Sabre\DAVACL;
  5. /**
  6. * Calendar interface.
  7. *
  8. * Implement this interface to allow a node to be recognized as an calendar.
  9. *
  10. * @copyright Copyright (C) fruux GmbH (https://fruux.com/)
  11. * @author Evert Pot (http://evertpot.com/)
  12. * @license http://sabre.io/license/ Modified BSD License
  13. */
  14. interface ICalendar extends ICalendarObjectContainer, DAVACL\IACL
  15. {
  16. }