diff options
Diffstat (limited to 'app/Census/CensusOfDenmark1803.php')
| -rw-r--r-- | app/Census/CensusOfDenmark1803.php | 66 |
1 files changed, 35 insertions, 31 deletions
diff --git a/app/Census/CensusOfDenmark1803.php b/app/Census/CensusOfDenmark1803.php index 58b66b9ce8..54f161ceb3 100644 --- a/app/Census/CensusOfDenmark1803.php +++ b/app/Census/CensusOfDenmark1803.php @@ -19,37 +19,41 @@ namespace Fisharebest\Webtrees\Census; /** * Definitions for a census */ -class CensusOfDenmark1803 extends CensusOfDenmark implements CensusInterface { - /** - * When did this census occur. - * - * @return string - */ - public function censusDate() { - return '01 FEB 1803'; - } +class CensusOfDenmark1803 extends CensusOfDenmark implements CensusInterface +{ + /** + * When did this census occur. + * + * @return string + */ + public function censusDate() + { + return '01 FEB 1803'; + } - /** - * Where did this census occur, in GEDCOM format. - * - * @return string - */ - public function censusPlace() { - return 'Schleswig-Holstein, Deutschland'; - } + /** + * Where did this census occur, in GEDCOM format. + * + * @return string + */ + public function censusPlace() + { + return 'Schleswig-Holstein, Deutschland'; + } - /** - * The columns of the census. - * - * @return CensusColumnInterface[] - */ - public function columns() { - return [ - new CensusColumnFullName($this, 'Navn', ''), - new CensusColumnRelationToHead($this, 'Stilling i familien', ''), - new CensusColumnAge($this, 'Alder', ''), - new CensusColumnConditionDanish($this, 'Civilstand', ''), - new CensusColumnOccupation($this, 'Erhverv', ''), - ]; - } + /** + * The columns of the census. + * + * @return CensusColumnInterface[] + */ + public function columns() + { + return [ + new CensusColumnFullName($this, 'Navn', ''), + new CensusColumnRelationToHead($this, 'Stilling i familien', ''), + new CensusColumnAge($this, 'Alder', ''), + new CensusColumnConditionDanish($this, 'Civilstand', ''), + new CensusColumnOccupation($this, 'Erhverv', ''), + ]; + } } |
