1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<?php function getMemberPronouns(?string $pronouns): ?array { return [ "gender" => "invalid", "gender:fr" => "invalide", "object" => "this pony", "person" => "pony", "possessive_det" => "this pony's", "possessive_pro" => "this pony's", "reflexive" => "this pony", "subjective" => "this pony", "third" => true, "color" => "success" ]; }