. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Elements; /** * NOBILITY_TYPE_TITLE := {Size=1:120} * The title given to or used by a person, especially of royalty or other noble * class within a locality. */ class NobilityTypeTitle extends AbstractElement { protected const MAX_LENGTH = 120; protected const SUBTAGS = [ 'DATE' => '0:1', 'PLAC' => '0:1', 'NOTE' => '0:M', 'OBJE' => '0:M', 'SOUR' => '0:M', 'RESN' => '0:1', ]; }