Rector fixes

This commit is contained in:
2025-11-19 16:01:14 +01:00
parent eae08e5752
commit 00ae2ad3b0

View File

@@ -158,9 +158,9 @@ class UserType extends AbstractType
usort( usort(
$items, $items,
fn ($a, $b) => mb_strtolower($this->translatableStringHelper->localize($a->getLabel())) fn ($a, $b) => mb_strtolower((string) $this->translatableStringHelper->localize($a->getLabel()))
<=> <=>
mb_strtolower($this->translatableStringHelper->localize($b->getLabel())) mb_strtolower((string) $this->translatableStringHelper->localize($b->getLabel()))
); );
return $items; return $items;