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 = [
|
private array $genders = [
|
||||||
[
|
[
|
||||||
'label' => ['en' => 'man', 'fr' => 'homme'],
|
'label' => ['en' => 'man', 'fr' => 'homme'],
|
||||||
'genderTranslation' => GenderEnum::MALE,
|
'genderTranslation' => GenderEnum::MALE->value,
|
||||||
'icon' => GenderIconEnum::MALE
|
'icon' => GenderIconEnum::MALE->value,
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
'label' => ['en' => 'woman', 'fr' => 'femme'],
|
'label' => ['en' => 'woman', 'fr' => 'femme'],
|
||||||
'genderTranslation' => GenderEnum::FEMALE,
|
'genderTranslation' => GenderEnum::FEMALE->value,
|
||||||
'icon' => GenderIconEnum::FEMALE
|
'icon' => GenderIconEnum::FEMALE->value,
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
'label' => ['en' => 'neutral', 'fr' => 'neutre'],
|
'label' => ['en' => 'neutral', 'fr' => 'neutre'],
|
||||||
'genderTranslation' => GenderEnum::NEUTRAL,
|
'genderTranslation' => GenderEnum::NEUTRAL->value,
|
||||||
'icon' => GenderIconEnum::NEUTRAL
|
'icon' => GenderIconEnum::NEUTRAL->value,
|
||||||
],
|
],
|
||||||
];
|
];
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user