From 6ce849f7b8b5388ee649b2f819cb741cd5c40dde Mon Sep 17 00:00:00 2001 From: Daniel Kesselberg Date: Sun, 25 Nov 2018 12:30:54 +0100 Subject: [PATCH] Add return type Signed-off-by: Daniel Kesselberg --- apps/user_ldap/lib/Access.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/user_ldap/lib/Access.php b/apps/user_ldap/lib/Access.php index c5075a033b..82947bd686 100644 --- a/apps/user_ldap/lib/Access.php +++ b/apps/user_ldap/lib/Access.php @@ -2017,7 +2017,7 @@ class Access extends LDAPUtility { * @param string|string[]|null $attr * @return bool */ - private function manyAttributes($attr) { + private function manyAttributes($attr): bool { if (\is_array($attr)) { return \count($attr) > 1; }