diff options
Diffstat (limited to 'app/Census/CensusColumnConditionUs.php')
| -rw-r--r-- | app/Census/CensusColumnConditionUs.php | 33 |
1 files changed, 17 insertions, 16 deletions
diff --git a/app/Census/CensusColumnConditionUs.php b/app/Census/CensusColumnConditionUs.php index 1a3e893b2c..0a86aa23f8 100644 --- a/app/Census/CensusColumnConditionUs.php +++ b/app/Census/CensusColumnConditionUs.php @@ -19,24 +19,25 @@ namespace Fisharebest\Webtrees\Census; /** * Marital status. */ -class CensusColumnConditionUs extends CensusColumnConditionEnglish { - /* Text to display for married individuals */ - protected $husband = 'M'; - protected $wife = 'M'; +class CensusColumnConditionUs extends CensusColumnConditionEnglish +{ + /* Text to display for married individuals */ + protected $husband = 'M'; + protected $wife = 'M'; - /* Text to display for unmarried individuals */ - protected $bachelor = 'S'; - protected $spinster = 'S'; + /* Text to display for unmarried individuals */ + protected $bachelor = 'S'; + protected $spinster = 'S'; - /* Text to display for children */ - protected $boy = 'S'; - protected $girl = 'S'; + /* Text to display for children */ + protected $boy = 'S'; + protected $girl = 'S'; - /* Text to display for divorced individuals */ - protected $divorce = 'D'; - protected $divorcee = 'D'; + /* Text to display for divorced individuals */ + protected $divorce = 'D'; + protected $divorcee = 'D'; - /* Text to display for widowed individuals */ - protected $widower = 'W'; - protected $widow = 'W'; + /* Text to display for widowed individuals */ + protected $widower = 'W'; + protected $widow = 'W'; } |
