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