aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristoph Wurst <ChristophWurst@users.noreply.github.com>2023-06-13 12:40:06 +0200
committerGitHub <noreply@github.com>2023-06-13 12:40:06 +0200
commit3f766e90affe5be78444be591eec28fd43e19a43 (patch)
tree8a87bed66418b9791cd5dfb84b03f2c97be5cd7d
parent4b3c55250890093d66d3e78c342a4572b1e07e6d (diff)
parent62c41967e868afb0def0446e77c498f31f2b4d35 (diff)
downloadnextcloud-server-3f766e90affe5be78444be591eec28fd43e19a43.tar.gz
nextcloud-server-3f766e90affe5be78444be591eec28fd43e19a43.zip
Merge pull request #38777 from nextcloud/fix/carddav/system-address-book-nullable-groupmanager
fix(carddav): Make SystemAddressBook::__construct $groupManager argument nullable
-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;