summaryrefslogtreecommitdiff
path: root/app/Census/CensusOfDenmark1840.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Census/CensusOfDenmark1840.php')
-rw-r--r--app/Census/CensusOfDenmark1840.php47
1 files changed, 25 insertions, 22 deletions
diff --git a/app/Census/CensusOfDenmark1840.php b/app/Census/CensusOfDenmark1840.php
index ae26378b7a..250caa60e8 100644
--- a/app/Census/CensusOfDenmark1840.php
+++ b/app/Census/CensusOfDenmark1840.php
@@ -19,27 +19,30 @@ namespace Fisharebest\Webtrees\Census;
/**
* Definitions for a census
*/
-class CensusOfDenmark1840 extends CensusOfDenmark implements CensusInterface {
- /**
- * When did this census occur.
- *
- * @return string
- */
- public function censusDate() {
- return '01 FEB 1840';
- }
+class CensusOfDenmark1840 extends CensusOfDenmark implements CensusInterface
+{
+ /**
+ * When did this census occur.
+ *
+ * @return string
+ */
+ public function censusDate()
+ {
+ return '01 FEB 1840';
+ }
- /**
- * 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', ''),
+ ];
+ }
}