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