$adresseResult, "city" => $cityResult ]; } public static function GetSexeLabel(string $sexeKey){ return $sexeKey === 'f' ? 'Mme' : 'Mr'; } public static function RemoveSpaceFromString(string $string){ $stringWithoutSpace = trim($string); $stringWithoutSpace = str_replace(" ",'',$stringWithoutSpace); return $stringWithoutSpace; } }