. */ declare(strict_types=1); 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(): array { return [ new CensusOfDeutschland1819(), new CensusOfDeutschland1867(), new CensusOfDeutschlandNL1867(), new CensusOfDeutschland1900(), new CensusOfDeutschland1919(), ]; } /** * Where did this census occur, in GEDCOM format. * * @return string */ public function censusPlace(): string { return 'Deutschland'; } /** * In which language was this census written. * * @return string */ public function censusLanguage(): string { return 'de'; } }