From 530e55ef017b2346ba18dcc0735fca01ab12035f Mon Sep 17 00:00:00 2001 From: Louis Chemineau Date: Thu, 16 Nov 2023 09:46:07 +0100 Subject: [PATCH] Fix param name after Sabre\CalDAV update Signed-off-by: Louis Chemineau --- apps/dav/lib/CalDAV/CachedSubscription.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/dav/lib/CalDAV/CachedSubscription.php b/apps/dav/lib/CalDAV/CachedSubscription.php index dc7f66e59b43f..4047f8dad0be0 100644 --- a/apps/dav/lib/CalDAV/CachedSubscription.php +++ b/apps/dav/lib/CalDAV/CachedSubscription.php @@ -169,11 +169,11 @@ public function getMultipleChildren(array $paths):array { /** * @param string $name - * @param null|resource|string $calendarData + * @param null|resource|string $data * @return null|string * @throws MethodNotAllowed */ - public function createFile($name, $calendarData = null) { + public function createFile($name, $data = null) { throw new MethodNotAllowed('Creating objects in cached subscription is not allowed'); }