mirror of
https://github.com/nextcloud/server.git
synced 2026-03-19 09:05:01 -04:00
Merge pull request #38777 from nextcloud/fix/carddav/system-address-book-nullable-groupmanager
fix(carddav): Make SystemAddressBook::__construct $groupManager argument nullable
This commit is contained in:
commit
3f766e90af
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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue