. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Elements; /** * PHYSICAL_DESCRIPTION := {Size=1:248} * An unstructured list of the attributes that describe the physical * characteristics of a person, place, or object. Commas separate each attribute. * Example: * 1 DSCR Hair Brown, Eyes Brown, Height 5 ft 8 in * 2 DATE 23 JUL 1935 */ class PhysicalDescription extends AbstractElement { protected const SUBTAGS = [ 'DATE' => '0:1', 'PLAC' => '0:1', 'NOTE' => '0:M', 'OBJE' => '0:M', 'SOUR' => '0:M', 'RESN' => '0:1', ]; }