1
0

ICalendarIsShared.php 416 B

12345678910111213141516171819202122232425
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
  5. * SPDX-License-Identifier: AGPL-3.0-or-later
  6. */
  7. namespace OCP\Calendar;
  8. /**
  9. * ICalendar Interface Extension
  10. *
  11. * @since 31.0.0
  12. */
  13. interface ICalendarIsShared {
  14. /**
  15. * Indicates whether the calendar is shared with the current user
  16. *
  17. * @since 31.0.0
  18. */
  19. public function isShared(): bool;
  20. }