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