summaryrefslogtreecommitdiff
path: root/app/Census/CensusOfDenmark1855.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Census/CensusOfDenmark1855.php')
-rw-r--r--app/Census/CensusOfDenmark1855.php60
1 files changed, 32 insertions, 28 deletions
diff --git a/app/Census/CensusOfDenmark1855.php b/app/Census/CensusOfDenmark1855.php
index e9a732e3ae..9449b790f4 100644
--- a/app/Census/CensusOfDenmark1855.php
+++ b/app/Census/CensusOfDenmark1855.php
@@ -19,33 +19,37 @@ namespace Fisharebest\Webtrees\Census;
/**
* Definitions for a census
*/
-class CensusOfDenmark1855 extends CensusOfDenmark implements CensusInterface {
- /**
- * When did this census occur.
- *
- * @return string
- */
- public function censusDate() {
- return '01 FEB 1855';
- }
+class CensusOfDenmark1855 extends CensusOfDenmark implements CensusInterface
+{
+ /**
+ * When did this census occur.
+ *
+ * @return string
+ */
+ public function censusDate()
+ {
+ return '01 FEB 1855';
+ }
- /**
- * 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, '', ''), // Religion?
- new CensusColumnNull($this, '', ''),
- new CensusColumnNull($this, '', ''),
- 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, '', ''),
+ // Religion?
+ new CensusColumnNull($this, '', ''),
+ new CensusColumnNull($this, '', ''),
+ new CensusColumnNull($this, '', ''),
+ new CensusColumnNull($this, '', ''),
+ ];
+ }
}