. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Elements; /** * ADDRESS_LINE1 := {Size=1:60} * The first line of the address used for indexing. This is the value of the * line corresponding to the ADDR tag line in the address structure. */ class AddressLine1 extends AbstractElement { protected const MAX_LENGTH = 60; }