. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Elements; /** * NAME_PHONETIC_VARIATION := {Size=1:120} * The phonetic variation of the name is written in the same form as the was * the name used in the superior primitive, but phonetically * written using the method indicated by the subordinate value, * for example if hiragana was used to provide a reading of a name written in * kanji, then the value would indicate ‘kana’. See page 57. */ class NamePhoneticVariation extends AbstractElement { protected const SUBTAGS = ['NPFX', 'GIVN', 'SPFX','SURN', 'NSFX', 'NICK', 'TYPE']; protected const MAXIMUM_LENGTH = 120; }