. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Elements; /** * ROLE_IN_EVENT := {Size=1:15} * [ CHIL | HUSB | WIFE | MOTH | FATH | SPOU | () ] * Indicates what role this person played in the event that is being cited in this context. For * example, if you cite a child's birth record as the source of the mother's name, the value for * this field is "MOTH." If you describe the groom of a marriage, the role is "HUSB." If the role * is something different than one of the six relationship role tags listed above then enclose the * role name within matching parentheses. */ class RoleInEvent extends AbstractElement { protected const MAX_LENGTH = 15; }