summaryrefslogtreecommitdiff
path: root/app/Census/CensusColumnConditionFrenchVeuf.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Census/CensusColumnConditionFrenchVeuf.php')
-rw-r--r--app/Census/CensusColumnConditionFrenchVeuf.php24
1 files changed, 1 insertions, 23 deletions
diff --git a/app/Census/CensusColumnConditionFrenchVeuf.php b/app/Census/CensusColumnConditionFrenchVeuf.php
index cf2b19db50..329b12de57 100644
--- a/app/Census/CensusColumnConditionFrenchVeuf.php
+++ b/app/Census/CensusColumnConditionFrenchVeuf.php
@@ -19,38 +19,16 @@ declare(strict_types=1);
namespace Fisharebest\Webtrees\Census;
-/**
- * Marital status.
- */
-class CensusColumnConditionFrenchVeuf extends AbstractCensusColumnCondition
+final readonly class CensusColumnConditionFrenchVeuf extends AbstractCensusColumnCondition
{
- // Text to display for married males
protected const string HUSBAND = '';
-
- // Text to display for married females
protected const string WIFE = '';
-
- // Text to display for married unmarried males
protected const string BACHELOR = '';
-
- // Text to display for married unmarried females
protected const string SPINSTER = '';
-
- // Text to display for male children
protected const string BOY = '';
-
- // Text to display for female children
protected const string GIRL = '';
-
- // Text to display for divorced males
protected const string DIVORCE = '';
-
- // Text to display for divorced females
protected const string DIVORCEE = '';
-
- // Text to display for widowed males
protected const string WIDOWER = '1';
-
- // Text to display for widowed females
protected const string WIDOW = '';
}