I was looking at the Gender class usage example, which contains this snippet:
case Gender::IS_UNISEX_NAME:
printf("The name %s is unisex in %s\n", $name, $data['country']);
break;
case Gender::IS_A_COUPLE:
printf("The name %s is both male and female in %s\n", $name, $data['country']);
break;
That gives me the impression that IS_UNISEX_NAME
and IS_A_COUPLE
are the same thing, which makes me wonder why there are two different constants for it.
It also makes me think that it could be due to a historical reason. Or maybe it's just an oversight.