Skip to content

Commit

Permalink
Remove parenthesis around return in apps/user_ldap/lib/Command/CheckU…
Browse files Browse the repository at this point in the history
…ser.php


Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>

Co-authored-by: Carl Schwan <carl@carlschwan.eu>
  • Loading branch information
come-nc and CarlSchwan authored Feb 7, 2022
1 parent 58da2ea commit b08719f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/user_ldap/lib/Command/CheckUser.php
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
*/
protected function userWasMapped(string $ocName): bool {
$dn = $this->mapping->getDNByName($ocName);
return ($dn !== false);
return $dn !== false;
}

/**
Expand Down

0 comments on commit b08719f

Please sign in to comment.