PublicCalendarObject.php 333 B

1234567891011121314151617
  1. <?php
  2. /**
  3. * SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors
  4. * SPDX-License-Identifier: AGPL-3.0-or-later
  5. */
  6. namespace OCA\DAV\CalDAV;
  7. class PublicCalendarObject extends CalendarObject {
  8. /**
  9. * public calendars are always shared
  10. * @return bool
  11. */
  12. protected function isShared() {
  13. return true;
  14. }
  15. }