diff options
Diffstat (limited to 'app/Census/CensusOfScotland1851.php')
| -rw-r--r-- | app/Census/CensusOfScotland1851.php | 55 |
1 files changed, 29 insertions, 26 deletions
diff --git a/app/Census/CensusOfScotland1851.php b/app/Census/CensusOfScotland1851.php index 5ee52f9de8..e06474c850 100644 --- a/app/Census/CensusOfScotland1851.php +++ b/app/Census/CensusOfScotland1851.php @@ -19,31 +19,34 @@ namespace Fisharebest\Webtrees\Census; /** * Definitions for a census */ -class CensusOfScotland1851 extends CensusOfScotland implements CensusInterface { - /** - * When did this census occur. - * - * @return string - */ - public function censusDate() { - return '30 MAR 1851'; - } +class CensusOfScotland1851 extends CensusOfScotland implements CensusInterface +{ + /** + * When did this census occur. + * + * @return string + */ + public function censusDate() + { + return '30 MAR 1851'; + } - /** - * The columns of the census. - * - * @return CensusColumnInterface[] - */ - public function columns() { - return [ - new CensusColumnFullName($this, 'Name', 'Name and surname'), - new CensusColumnRelationToHead($this, 'Relation', 'Relation to head of household'), - new CensusColumnConditionEnglish($this, 'Condition', 'Condition'), - new CensusColumnAgeMale($this, 'AgeM', 'Age (males)'), - new CensusColumnAgeFemale($this, 'AgeF', 'Age (females)'), - new CensusColumnOccupation($this, 'Occupation', 'Rank, profession or occupation'), - new CensusColumnBirthPlace($this, 'Birthplace', 'Where born'), - new CensusColumnNull($this, 'Infirm', 'Whether blind or deaf-and-dumb'), - ]; - } + /** + * The columns of the census. + * + * @return CensusColumnInterface[] + */ + public function columns() + { + return [ + new CensusColumnFullName($this, 'Name', 'Name and surname'), + new CensusColumnRelationToHead($this, 'Relation', 'Relation to head of household'), + new CensusColumnConditionEnglish($this, 'Condition', 'Condition'), + new CensusColumnAgeMale($this, 'AgeM', 'Age (males)'), + new CensusColumnAgeFemale($this, 'AgeF', 'Age (females)'), + new CensusColumnOccupation($this, 'Occupation', 'Rank, profession or occupation'), + new CensusColumnBirthPlace($this, 'Birthplace', 'Where born'), + new CensusColumnNull($this, 'Infirm', 'Whether blind or deaf-and-dumb'), + ]; + } } |
