mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-11-20 19:07:47 +00:00
Rector fixes
This commit is contained in:
@@ -158,9 +158,9 @@ class UserType extends AbstractType
|
||||
|
||||
usort(
|
||||
$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;
|
||||
|
||||
Reference in New Issue
Block a user