diff options
author | Joas Schilling <coding@schilljs.com> | 2024-12-09 11:33:12 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2024-12-11 08:39:09 +0100 |
commit | 4fd84e47bf01958058f6e26b5655fa3671e15f67 (patch) | |
tree | c0303f914c33336ab0977f3d585c171b976e79a8 /lib | |
parent | 6f3ee6b09a27cedf49c56b981d6d21fd852b4838 (diff) | |
download | nextcloud-server-4fd84e47bf01958058f6e26b5655fa3671e15f67.tar.gz nextcloud-server-4fd84e47bf01958058f6e26b5655fa3671e15f67.zip |
fix(calendar): Fix getting the permissions of the user
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/public/Calendar/ICalendar.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/Calendar/ICalendar.php b/lib/public/Calendar/ICalendar.php index f29d6f30176..2dfc1ca632f 100644 --- a/lib/public/Calendar/ICalendar.php +++ b/lib/public/Calendar/ICalendar.php @@ -53,7 +53,7 @@ interface ICalendar { public function search(string $pattern, array $searchProperties = [], array $options = [], ?int $limit = null, ?int $offset = null): array; /** - * @return int build up using \OCP\Constants + * @return int build up using {@see \OCP\Constants} * @since 13.0.0 */ public function getPermissions(): int; |