. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Census; final readonly class CensusColumnConditionEnglish extends AbstractCensusColumnCondition { protected const string HUSBAND = 'Mar'; protected const string WIFE = 'Mar'; protected const string BACHELOR = 'Unm'; protected const string SPINSTER = 'Unm'; protected const string DIVORCE = 'Div'; protected const string DIVORCEE = 'Div'; protected const string WIDOWER = 'Wid'; protected const string WIDOW = 'Wid'; }