mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-11-23 12:27:44 +00:00
Rector fixes
This commit is contained in:
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user