Remove redundant cast to string in user_ldap

Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
This commit is contained in:
Côme Chilliet 2022-12-13 08:41:12 +01:00
Родитель e4a780127d
Коммит 3c0b1bdc30
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: A3E2F658B28C760A
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -1376,7 +1376,7 @@ class Access extends LDAPUtility {
$name = preg_replace('/[^a-zA-Z0-9_.@-]/u', '', $name);
if (strlen($name) > 64) {
$name = (string)hash('sha256', $name, false);
$name = hash('sha256', $name, false);
}
if ($name === '') {
@ -1389,7 +1389,7 @@ class Access extends LDAPUtility {
public function sanitizeGroupIDCandidate(string $candidate): string {
$candidate = trim($candidate);
if (strlen($candidate) > 64) {
$candidate = (string)hash('sha256', $candidate, false);
$candidate = hash('sha256', $candidate, false);
}
if ($candidate === '') {
throw new \InvalidArgumentException('provided name template for username does not contain any allowed characters');