. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Elements; /** * ADDRESS_STATE := {Size=1:60} * The name of the state used in the address. Isolated for sorting or indexing. */ class AddressState extends AbstractElement { protected const MAX_LENGTH = 60; }