. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Elements; /** * ADDRESS_COUNTRY := {Size=1:60} * The name of the country that pertains to the associated address. Isolated * by some systems for sorting or indexing. Used in most cases to facilitate * automatic sorting of mail. */ class AddressCountry extends AbstractElement { protected const MAX_LENGTH = 60; }