diff options
author | Daniel <mail@danielkesselberg.de> | 2021-10-14 22:45:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-14 22:45:25 +0200 |
commit | 792a7c09921ec4a2332d8091c9aa924ca8c63b08 (patch) | |
tree | 820bd1497ef725e908261cc628a18fb02351115e | |
parent | 67baaaaff937158f8c418a8f7265f9687d8d7403 (diff) | |
parent | 926fb5b3de114239632a4e32ac81916dcc696867 (diff) | |
download | nextcloud-server-792a7c09921ec4a2332d8091c9aa924ca8c63b08.tar.gz nextcloud-server-792a7c09921ec4a2332d8091c9aa924ca8c63b08.zip |
Merge pull request #29246 from nextcloud/fix/make-psalm-happer
Change return type to correct type
-rw-r--r-- | apps/dav/lib/DAV/GroupPrincipalBackend.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/lib/DAV/GroupPrincipalBackend.php b/apps/dav/lib/DAV/GroupPrincipalBackend.php index 6317fc59cc2..f1f15fd61a6 100644 --- a/apps/dav/lib/DAV/GroupPrincipalBackend.php +++ b/apps/dav/lib/DAV/GroupPrincipalBackend.php @@ -125,7 +125,7 @@ class GroupPrincipalBackend implements BackendInterface { * Returns the list of members for a group-principal * * @param string $principal - * @return string[] + * @return array * @throws Exception */ public function getGroupMemberSet($principal) { |