diff options
author | Joas Schilling <coding@schilljs.com> | 2021-12-09 09:25:50 +0100 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2021-12-13 14:26:22 +0000 |
commit | 846929b90d8d3d2aa668440461a3da06a089b39a (patch) | |
tree | 2faf610f3eb5d81a8f76dcd0f3dc187004243c39 | |
parent | 9da9a53166108d4cf9b80b53a7050c47815d015e (diff) | |
download | nextcloud-server-846929b90d8d3d2aa668440461a3da06a089b39a.tar.gz nextcloud-server-846929b90d8d3d2aa668440461a3da06a089b39a.zip |
Make psalm more happy
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rw-r--r-- | lib/private/Collaboration/Collaborators/MailPlugin.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/Collaboration/Collaborators/MailPlugin.php b/lib/private/Collaboration/Collaborators/MailPlugin.php index 34037084c8e..301d3780987 100644 --- a/lib/private/Collaboration/Collaborators/MailPlugin.php +++ b/lib/private/Collaboration/Collaborators/MailPlugin.php @@ -103,8 +103,8 @@ class MailPlugin implements ISearchPlugin { [ 'limit' => $limit, 'offset' => $offset, - 'enumeration' => $this->shareeEnumeration, - 'fullmatch' => $this->shareeEnumerationFullMatch, + 'enumeration' => (bool) $this->shareeEnumeration, + 'fullmatch' => (bool) $this->shareeEnumerationFullMatch, ] ); $lowerSearch = strtolower($search); |