From 270d661fdaac486868a7e9210381069aa0406b19 Mon Sep 17 00:00:00 2001 From: Christoph Wurst Date: Mon, 12 Jun 2023 18:44:25 +0200 Subject: [PATCH] fix(carddav): Make SystemAddressBook::__construct $groupManager argument nullable Signed-off-by: Christoph Wurst --- apps/dav/lib/CardDAV/SystemAddressbook.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/dav/lib/CardDAV/SystemAddressbook.php b/apps/dav/lib/CardDAV/SystemAddressbook.php index 1cffde634747c..1f71c36ef790e 100644 --- a/apps/dav/lib/CardDAV/SystemAddressbook.php +++ b/apps/dav/lib/CardDAV/SystemAddressbook.php @@ -64,7 +64,7 @@ public function __construct(BackendInterface $carddavBackend, IUserSession $userSession, ?IRequest $request = null, ?TrustedServers $trustedServers = null, - ?IGroupManager $groupManager) { + ?IGroupManager $groupManager = null) { parent::__construct($carddavBackend, $addressBookInfo, $l10n); $this->config = $config; $this->userSession = $userSession;