Skip to content

Commit b08719f

Browse files
come-ncCarlSchwan
andauthored
Remove parenthesis around return in apps/user_ldap/lib/Command/CheckUser.php
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com> Co-authored-by: Carl Schwan <carl@carlschwan.eu>
1 parent 58da2ea commit b08719f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/user_ldap/lib/Command/CheckUser.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
119119
*/
120120
protected function userWasMapped(string $ocName): bool {
121121
$dn = $this->mapping->getDNByName($ocName);
122-
return ($dn !== false);
122+
return $dn !== false;
123123
}
124124

125125
/**

0 commit comments

Comments
 (0)