. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Census; /** * Definitions for a census */ class CensusOfScotland extends Census implements CensusPlaceInterface { /** * All available censuses for this census place. * * @return array */ public function allCensusDates(): array { return [ new CensusOfScotland1841(), new CensusOfScotland1851(), new CensusOfScotland1861(), new CensusOfScotland1871(), new CensusOfScotland1881(), new CensusOfScotland1891(), new CensusOfScotland1901(), new CensusOfScotland1911(), new RegisterOfScotland1939() ]; } /** * Where did this census occur, in GEDCOM format. * * @return string */ public function censusPlace(): string { return 'Scotland'; } /** * In which language was this census written. * * @return string */ public function censusLanguage(): string { return 'en-GB'; } }