summaryrefslogtreecommitdiff
path: root/app/Census/CensusOfEngland.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Census/CensusOfEngland.php')
-rw-r--r--app/Census/CensusOfEngland.php57
1 files changed, 30 insertions, 27 deletions
diff --git a/app/Census/CensusOfEngland.php b/app/Census/CensusOfEngland.php
index a98dae6317..c3309c59c9 100644
--- a/app/Census/CensusOfEngland.php
+++ b/app/Census/CensusOfEngland.php
@@ -19,32 +19,35 @@ namespace Fisharebest\Webtrees\Census;
/**
* Definitions for a census
*/
-class CensusOfEngland extends Census implements CensusPlaceInterface {
- /**
- * All available censuses for this census place.
- *
- * @return CensusInterface[]
- */
- public function allCensusDates() {
- return [
- new CensusOfEngland1841(),
- new CensusOfEngland1851(),
- new CensusOfEngland1861(),
- new CensusOfEngland1871(),
- new CensusOfEngland1881(),
- new CensusOfEngland1891(),
- new CensusOfEngland1901(),
- new CensusOfEngland1911(),
- new RegisterOfEngland1939(),
- ];
- }
+class CensusOfEngland extends Census implements CensusPlaceInterface
+{
+ /**
+ * All available censuses for this census place.
+ *
+ * @return CensusInterface[]
+ */
+ public function allCensusDates()
+ {
+ return [
+ new CensusOfEngland1841(),
+ new CensusOfEngland1851(),
+ new CensusOfEngland1861(),
+ new CensusOfEngland1871(),
+ new CensusOfEngland1881(),
+ new CensusOfEngland1891(),
+ new CensusOfEngland1901(),
+ new CensusOfEngland1911(),
+ new RegisterOfEngland1939(),
+ ];
+ }
- /**
- * Where did this census occur, in GEDCOM format.
- *
- * @return string
- */
- public function censusPlace() {
- return 'England';
- }
+ /**
+ * Where did this census occur, in GEDCOM format.
+ *
+ * @return string
+ */
+ public function censusPlace()
+ {
+ return 'England';
+ }
}