diff options
author | Joas Schilling <coding@schilljs.com> | 2021-12-09 09:25:50 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2021-12-13 13:49:15 +0100 |
commit | dd2c1c6fb817b0ad5d808c1f8a87d33af380ada6 (patch) | |
tree | ce5402f622085b94e472794c4a5cb9f096442b53 /lib/private | |
parent | 39d6624ab311cda5b6cdee80f37d2b719f789c80 (diff) | |
download | nextcloud-server-dd2c1c6fb817b0ad5d808c1f8a87d33af380ada6.tar.gz nextcloud-server-dd2c1c6fb817b0ad5d808c1f8a87d33af380ada6.zip |
Make psalm more happy
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/private')
-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); |