From a4f96c18e913f503be4388073f481d3c609865e4 Mon Sep 17 00:00:00 2001 From: Côme Chilliet <91878298+come-nc@users.noreply.github.com> Date: Mon, 7 Feb 2022 09:47:40 +0100 Subject: Remove parenthesis around return in apps/user_ldap/lib/Command/CheckUser.php MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Carl Schwan Signed-off-by: Côme Chilliet --- apps/user_ldap/lib/Command/CheckUser.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps/user_ldap/lib') diff --git a/apps/user_ldap/lib/Command/CheckUser.php b/apps/user_ldap/lib/Command/CheckUser.php index d05d341f6d9..c35557f67ed 100644 --- a/apps/user_ldap/lib/Command/CheckUser.php +++ b/apps/user_ldap/lib/Command/CheckUser.php @@ -119,7 +119,7 @@ class CheckUser extends Command { */ protected function userWasMapped(string $ocName): bool { $dn = $this->mapping->getDNByName($ocName); - return ($dn !== false); + return $dn !== false; } /** -- cgit v1.2.3