This commit is contained in:
Linksehat Staging Server
2023-12-29 17:47:11 +07:00
parent 6b57919bba
commit 1aa984b7eb
3 changed files with 9 additions and 9 deletions

View File

@@ -15,6 +15,7 @@ class Helper
{
public static function genderNormalization($anyGenderCode)
{
if ($anyGenderCode == 'M') {
return 'Male';
} else if ($anyGenderCode == 'F') {
@@ -24,7 +25,7 @@ class Helper
} else if ($anyGenderCode == 'U') {
return 'Unknown';
} else {
return null;
return '-';
}
}
@@ -52,7 +53,7 @@ class Helper
} else if ($anyGenderCode == 'U') {
return 'unknown';
} else {
return null;
return '-';
}
}