mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
Fix pipeline for LoadGenders file
This commit is contained in:
parent
34748dca76
commit
7541238c1e
@ -23,18 +23,18 @@ class LoadGenders extends AbstractFixture implements OrderedFixtureInterface
|
||||
private array $genders = [
|
||||
[
|
||||
'label' => ['en' => 'man', 'fr' => 'homme'],
|
||||
'genderTranslation' => GenderEnum::MALE,
|
||||
'icon' => GenderIconEnum::MALE
|
||||
'genderTranslation' => GenderEnum::MALE->value,
|
||||
'icon' => GenderIconEnum::MALE->value,
|
||||
],
|
||||
[
|
||||
'label' => ['en' => 'woman', 'fr' => 'femme'],
|
||||
'genderTranslation' => GenderEnum::FEMALE,
|
||||
'icon' => GenderIconEnum::FEMALE
|
||||
'genderTranslation' => GenderEnum::FEMALE->value,
|
||||
'icon' => GenderIconEnum::FEMALE->value,
|
||||
],
|
||||
[
|
||||
'label' => ['en' => 'neutral', 'fr' => 'neutre'],
|
||||
'genderTranslation' => GenderEnum::NEUTRAL,
|
||||
'icon' => GenderIconEnum::NEUTRAL
|
||||
'genderTranslation' => GenderEnum::NEUTRAL->value,
|
||||
'icon' => GenderIconEnum::NEUTRAL->value,
|
||||
],
|
||||
];
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user