diff options
Diffstat (limited to 'app/Census/CensusOfDeutschland.php')
| -rw-r--r-- | app/Census/CensusOfDeutschland.php | 49 |
1 files changed, 26 insertions, 23 deletions
diff --git a/app/Census/CensusOfDeutschland.php b/app/Census/CensusOfDeutschland.php index 30e2cf9952..ac780ce431 100644 --- a/app/Census/CensusOfDeutschland.php +++ b/app/Census/CensusOfDeutschland.php @@ -19,28 +19,31 @@ namespace Fisharebest\Webtrees\Census; /** * Definitions for a census */ -class CensusOfDeutschland extends Census implements CensusPlaceInterface { - /** - * All available censuses for this census place. - * - * @return CensusInterface[] - */ - public function allCensusDates() { - return [ - new CensusOfDeutschland1819(), - new CensusOfDeutschland1867(), - new CensusOfDeutschlandNL1867(), - new CensusOfDeutschland1900(), - new CensusOfDeutschland1919(), - ]; - } +class CensusOfDeutschland extends Census implements CensusPlaceInterface +{ + /** + * All available censuses for this census place. + * + * @return CensusInterface[] + */ + public function allCensusDates() + { + return [ + new CensusOfDeutschland1819(), + new CensusOfDeutschland1867(), + new CensusOfDeutschlandNL1867(), + new CensusOfDeutschland1900(), + new CensusOfDeutschland1919(), + ]; + } - /** - * Where did this census occur, in GEDCOM format. - * - * @return string - */ - public function censusPlace() { - return 'Deutschland'; - } + /** + * Where did this census occur, in GEDCOM format. + * + * @return string + */ + public function censusPlace() + { + return 'Deutschland'; + } } |
