ICalendar.php 397 B

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