. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Elements; /** * EVENT_ATTRIBUTE_TYPE := {Size=1:15} * [ | | ] * A code that classifies the principal event or happening that caused the * source record entry to be created. If the event or attribute doesn't * translate to one of these tag codes, then a user supplied value is * expected and will be generally classified in the category of other. */ class EventAttributeType extends AbstractElement { protected const MAXIMUM_LENGTH = 15; }