Remove unused method

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2022-08-22 14:15:32 +02:00
parent ef60257110
commit f4885ee3ba
No known key found for this signature in database
GPG key ID: C400AAF20C1BB6FC

View file

@ -120,20 +120,6 @@ class Wizard extends LDAPUtility {
return (int)$result;
}
/**
* formats the return value of a count operation to the string to be
* inserted.
*
* @param int $count
* @return string
*/
private function formatCountResult(int $count): string {
if ($count > 1000) {
return '> 1000';
}
return (string)$count;
}
public function countGroups() {
$filter = $this->configuration->ldapGroupFilter;