Merge pull request #38792 from nextcloud/backport/38777/stable27

[stable27] fix(carddav): Make SystemAddressBook::__construct $groupManager argument nullable
This commit is contained in:
Arthur Schiwon 2023-07-10 18:28:02 +02:00 committed by GitHub
commit 1b422df12a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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