mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
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:
parent
75ce9a4832
commit
a4f96c18e9
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in a new issue