fix(carddav): Make SystemAddressBook::__construct $groupManager argument nullable

Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
pull/38777/head
Christoph Wurst 2023-06-12 18:44:25 +07:00
parent 63bf207ca7
commit 62c41967e8
No known key found for this signature in database
GPG Key ID: CC42AC2A7F0E56D8
1 changed files with 1 additions and 1 deletions

@ -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;