aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2023-06-12 18:44:25 +0200
committerChristoph Wurst <christoph@winzerhof-wurst.at>2023-06-12 18:44:25 +0200
commit62c41967e868afb0def0446e77c498f31f2b4d35 (patch)
tree6e1ceda17d49362b77989bb84881fbcb79efa888 /apps
parent63bf207ca7a18dd50ce3aeaea42e53f4ee400fc0 (diff)
downloadnextcloud-server-62c41967e868afb0def0446e77c498f31f2b4d35.tar.gz
nextcloud-server-62c41967e868afb0def0446e77c498f31f2b4d35.zip
fix(carddav): Make SystemAddressBook::__construct $groupManager argument nullable
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'apps')
-rw-r--r--apps/dav/lib/CardDAV/SystemAddressbook.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/lib/CardDAV/SystemAddressbook.php b/apps/dav/lib/CardDAV/SystemAddressbook.php
index 1cffde63474..1f71c36ef79 100644
--- a/apps/dav/lib/CardDAV/SystemAddressbook.php
+++ b/apps/dav/lib/CardDAV/SystemAddressbook.php
@@ -64,7 +64,7 @@ class SystemAddressbook extends AddressBook {
IUserSession $userSession,
?IRequest $request = null,
?TrustedServers $trustedServers = null,
- ?IGroupManager $groupManager) {
+ ?IGroupManager $groupManager = null) {
parent::__construct($carddavBackend, $addressBookInfo, $l10n);
$this->config = $config;
$this->userSession = $userSession;