Jake Vanderwerf
23 hours ago f4be611c51473359e6d41780f0313c446079e9d3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php
namespace JVBase\managers\SEO\render\Traits\_Properties;
 
use JVBase\managers\SEO\render\Thing\Intangible\DefinedTerm;
use JVBase\managers\SEO\render\Thing\Intangible\StructuredValue\StructuredValue;
 
if (!defined('ABSPATH')) {
    exit;
}
trait pronounsTrait {
    /**
     * @var DefinedTerm|StructuredValue|string A short string listing or describing pronouns for a person. Typically the person concerned is the best authority as pronouns are a critical part of personal identity and expression. Publishers and consumers of this information are reminded to treat this data responsibly, take country-specific laws related to gender expression into account, and be wary of out-of-date data and drawing unwarranted inferences about the person being described.
     *
     * In English, formulations such as "they/them", "she/her", and "he/him" are commonly used online and can also be used here. We do not intend to enumerate all possible micro-syntaxes in all languages. More structured and well-defined external values for pronouns can be referenced using the StructuredValue or DefinedTerm values.
     */
    protected DefinedTerm|StructuredValue|string $pronouns;
 
    public function getPronouns():DefinedTerm|StructuredValue|string|null
    {
        return $this->pronouns??null;
    }
    public function setPronouns(DefinedTerm|StructuredValue|string $pronouns):void
    {
        $this->pronouns = $pronouns;
    }
}