diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-03-06 16:33:01 +0100 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-03-06 16:38:25 +0100 |
commit | df9e2b828aacd31c16028b4eca4d0e220e6929e7 (patch) | |
tree | 6918e728f4f88585b74875f1beb28706f8fdd05d /lib/private/Group/Database.php | |
parent | ed81337461c8c7763eb07a489fc980491dc9c046 (diff) | |
download | nextcloud-server-df9e2b828aacd31c16028b4eca4d0e220e6929e7.tar.gz nextcloud-server-df9e2b828aacd31c16028b4eca4d0e220e6929e7.zip |
Fix mismatching docblock return types
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'lib/private/Group/Database.php')
-rw-r--r-- | lib/private/Group/Database.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/private/Group/Database.php b/lib/private/Group/Database.php index 450fffe573e..27dad809f89 100644 --- a/lib/private/Group/Database.php +++ b/lib/private/Group/Database.php @@ -400,7 +400,8 @@ class Database extends ABackend * get the number of disabled users in a group * * @param string $search - * @return int|bool + * + * @return int */ public function countDisabledInGroup(string $gid): int { $this->fixDI(); |