nextcloud/lib/public/Calendar/ICalendarIsEnabled.php
SebastianKrupinski bd3026fcbd
fix: add calendar enable
Signed-off-by: SebastianKrupinski <krupinskis05@gmail.com>
2025-05-23 10:42:12 +02:00

24 lines
396 B
PHP

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCP\Calendar;
/**
* ICalendar Interface Extension
*
* @since 31.0.6
*/
interface ICalendarIsEnabled {
/**
* Indicates whether the calendar is enabled
*
* @since 31.0.6
*/
public function isEnabled(): bool;
}