diff options
| author | Greg Roach <fisharebest@webtrees.net> | 2019-05-17 14:56:40 +0100 |
|---|---|---|
| committer | Greg Roach <fisharebest@webtrees.net> | 2019-05-17 14:56:40 +0100 |
| commit | 918e47c5f5c18a60bb8c20bb9e6ef2c2e310fdfc (patch) | |
| tree | 4425f290633a0f450ff3c7e7ed4c337ecab9c392 /app/Census/CensusColumnConditionFrenchVeuf.php | |
| parent | 184832486ed157f5480619bbb95ab0722e686021 (diff) | |
| download | webtrees-918e47c5f5c18a60bb8c20bb9e6ef2c2e310fdfc.tar.gz webtrees-918e47c5f5c18a60bb8c20bb9e6ef2c2e310fdfc.tar.bz2 webtrees-918e47c5f5c18a60bb8c20bb9e6ef2c2e310fdfc.zip | |
Prefer constants
Diffstat (limited to 'app/Census/CensusColumnConditionFrenchVeuf.php')
| -rw-r--r-- | app/Census/CensusColumnConditionFrenchVeuf.php | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/app/Census/CensusColumnConditionFrenchVeuf.php b/app/Census/CensusColumnConditionFrenchVeuf.php index b1f3507f6d..f61d1004ea 100644 --- a/app/Census/CensusColumnConditionFrenchVeuf.php +++ b/app/Census/CensusColumnConditionFrenchVeuf.php @@ -22,33 +22,33 @@ namespace Fisharebest\Webtrees\Census; */ class CensusColumnConditionFrenchVeuf extends AbstractCensusColumnCondition { - /** @var string Text to display for married males */ - protected $husband = ''; + // Text to display for married males + protected const HUSBAND = ''; - /** @var string Text to display for married females */ - protected $wife = ''; + // Text to display for married females + protected const WIFE = ''; - /** @var string Text to display for unmarried males */ - protected $bachelor = ''; + // Text to display for married unmarried males + protected const BACHELOR = ''; - /** @var string Text to display for unmarried females */ - protected $spinster = ''; + // Text to display for married unmarried females + protected const SPINSTER = ''; - /** @var string Text to display for male children */ - protected $boy = ''; + // Text to display for male children + protected const BOY = ''; - /** @var string Text to display for female children */ - protected $girl = ''; + // Text to display for female children + protected const GIRL = ''; - /** @var string Text to display for divorced males */ - protected $divorce = ''; + // Text to display for divorced males + protected const DIVORCE = ''; - /** @var string Text to display for divorced females */ - protected $divorcee = ''; + // Text to display for divorced females + protected const DIVORCEE = ''; - /** @var string Text to display for widowed males */ - protected $widower = '1'; + // Text to display for widowed males + protected const WIDOWER = '1'; - /** @var string Text to display for widowed females */ - protected $widow = ''; + // Text to display for widowed females + protected const WIDOW = ''; } |
