mirror of
				https://gitlab.com/Chill-Projet/chill-bundles.git
				synced 2025-10-31 01:08:26 +00:00 
			
		
		
		
	Fix pipeline for LoadGenders file
This commit is contained in:
		| @@ -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, | ||||
|         ], | ||||
|     ]; | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user