Skip to content

Commit

Permalink
fix(carddav): Make SystemAddressBook::__construct $groupManager argum…
Browse files Browse the repository at this point in the history
…ent nullable

Signed-off-by: Christoph Wurst <[email protected]>
  • Loading branch information
ChristophWurst committed Jun 12, 2023
1 parent 63bf207 commit 62c4196
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/dav/lib/CardDAV/SystemAddressbook.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public function __construct(BackendInterface $carddavBackend,
IUserSession $userSession,
?IRequest $request = null,
?TrustedServers $trustedServers = null,
?IGroupManager $groupManager) {
?IGroupManager $groupManager = null) {
parent::__construct($carddavBackend, $addressBookInfo, $l10n);
$this->config = $config;
$this->userSession = $userSession;
Expand Down

0 comments on commit 62c4196

Please sign in to comment.