<?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"
    ];
}