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