diff options
author | Joas Schilling <coding@schilljs.com> | 2021-12-09 09:25:50 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2021-12-09 09:25:50 +0100 |
commit | f1a6668cc25f7a51e17c1874d7f040d8a56f1a26 (patch) | |
tree | 7b686e43637d8b23b0f16a4d07539be7cba4fe57 /lib/private/Collaboration | |
parent | 93b77f54bdf01e0dc718faca23068a918719f87a (diff) | |
download | nextcloud-server-f1a6668cc25f7a51e17c1874d7f040d8a56f1a26.tar.gz nextcloud-server-f1a6668cc25f7a51e17c1874d7f040d8a56f1a26.zip |
Make psalm more happy
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/private/Collaboration')
-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 80f2906b510..c0d0a55a1a1 100644 --- a/lib/private/Collaboration/Collaborators/MailPlugin.php +++ b/lib/private/Collaboration/Collaborators/MailPlugin.php @@ -102,8 +102,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); |