diff options
Diffstat (limited to 'app/Census/CensusOfDenmark1845.php')
| -rw-r--r-- | app/Census/CensusOfDenmark1845.php | 53 |
1 files changed, 28 insertions, 25 deletions
diff --git a/app/Census/CensusOfDenmark1845.php b/app/Census/CensusOfDenmark1845.php index 8822d65daf..1c4364e9a6 100644 --- a/app/Census/CensusOfDenmark1845.php +++ b/app/Census/CensusOfDenmark1845.php @@ -19,30 +19,33 @@ namespace Fisharebest\Webtrees\Census; /** * Definitions for a census */ -class CensusOfDenmark1845 extends CensusOfDenmark implements CensusInterface { - /** - * When did this census occur. - * - * @return string - */ - public function censusDate() { - return '01 FEB 1845'; - } +class CensusOfDenmark1845 extends CensusOfDenmark implements CensusInterface +{ + /** + * When did this census occur. + * + * @return string + */ + public function censusDate() + { + return '01 FEB 1845'; + } - /** - * The columns of the census. - * - * @return CensusColumnInterface[] - */ - public function columns() { - return [ - new CensusColumnFullName($this, 'Navn', ''), - new CensusColumnAge($this, 'Alder', ''), - new CensusColumnConditionDanish($this, 'Civilstand', ''), - new CensusColumnOccupation($this, 'Erhverv', ''), - new CensusColumnRelationToHead($this, 'Stilling i familien', ''), - new CensusColumnNull($this, '', ''), - new CensusColumnNull($this, '', ''), - ]; - } + /** + * The columns of the census. + * + * @return CensusColumnInterface[] + */ + public function columns() + { + return [ + new CensusColumnFullName($this, 'Navn', ''), + new CensusColumnAge($this, 'Alder', ''), + new CensusColumnConditionDanish($this, 'Civilstand', ''), + new CensusColumnOccupation($this, 'Erhverv', ''), + new CensusColumnRelationToHead($this, 'Stilling i familien', ''), + new CensusColumnNull($this, '', ''), + new CensusColumnNull($this, '', ''), + ]; + } } |
