sdsadsdf
All checks were successful
Deploy / deploy-staging (push) Successful in 26s
Deploy / deploy-production (push) Has been skipped

This commit is contained in:
2026-06-19 01:23:10 +02:00
parent 2c87e7ec95
commit e1c3f3fd8b

View File

@@ -307,6 +307,10 @@ final class UserSelfManagementService
*/ */
private function isList(array $value): bool private function isList(array $value): bool
{ {
if ($value === []) {
return true;
}
return array_keys($value) === range(0, count($value) - 1); return array_keys($value) === range(0, count($value) - 1);
} }