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