diff options
Diffstat (limited to 'app/Census/CensusOfDenmark1834.php')
| -rw-r--r-- | app/Census/CensusOfDenmark1834.php | 47 |
1 files changed, 25 insertions, 22 deletions
diff --git a/app/Census/CensusOfDenmark1834.php b/app/Census/CensusOfDenmark1834.php index 64fdcbed3a..d6b4de181f 100644 --- a/app/Census/CensusOfDenmark1834.php +++ b/app/Census/CensusOfDenmark1834.php @@ -19,27 +19,30 @@ namespace Fisharebest\Webtrees\Census; /** * Definitions for a census */ -class CensusOfDenmark1834 extends CensusOfDenmark implements CensusInterface { - /** - * When did this census occur. - * - * @return string - */ - public function censusDate() { - return '18 FEB 1834'; - } +class CensusOfDenmark1834 extends CensusOfDenmark implements CensusInterface +{ + /** + * When did this census occur. + * + * @return string + */ + public function censusDate() + { + return '18 FEB 1834'; + } - /** - * The columns of the census. - * - * @return CensusColumnInterface[] - */ - public function columns() { - return [ - new CensusColumnFullName($this, 'Navn', ''), - new CensusColumnAge($this, 'Alder', ''), - new CensusColumnConditionDanish($this, 'Civilstand', ''), - new CensusColumnRelationToHead($this, 'Stilling i familien', ''), - ]; - } + /** + * The columns of the census. + * + * @return CensusColumnInterface[] + */ + public function columns() + { + return [ + new CensusColumnFullName($this, 'Navn', ''), + new CensusColumnAge($this, 'Alder', ''), + new CensusColumnConditionDanish($this, 'Civilstand', ''), + new CensusColumnRelationToHead($this, 'Stilling i familien', ''), + ]; + } } |
