. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Census; /** * Marital status. */ class CensusColumnConditionEnglish extends AbstractCensusColumnCondition { /** @var string Text to display for married males */ protected $husband = 'Mar'; /** @var string Text to display for married females */ protected $wife = 'Mar'; /** @var string Text to display for unmarried males */ protected $bachelor = 'Unm'; /** @var string Text to display for unmarried females */ protected $spinster = 'Unm'; /** @var string Text to display for divorced males */ protected $divorce = 'Div'; /** @var string Text to display for divorced females */ protected $divorcee = 'Div'; /** @var string Text to display for widowed males */ protected $widower = 'Wid'; /** @var string Text to display for widowed females */ protected $widow = 'Wid'; }