Remove parenthesis around return in apps/user_ldap/lib/Command/CheckUser.php

Co-authored-by: Carl Schwan <carl@carlschwan.eu>

Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
This commit is contained in:
Côme Chilliet 2022-02-07 09:47:40 +01:00 committed by Côme Chilliet
parent 75ce9a4832
commit a4f96c18e9
No known key found for this signature in database
GPG key ID: A3E2F658B28C760A

View file

@ -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;
}
/**