. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Census; /** * Definitions for a census */ class CensusOfRhodeIsland extends Census implements CensusPlaceInterface { /** * All available censuses for this census place. * * @return array */ public function allCensusDates(): array { return [ new CensusOfRhodeIsland1905(), new CensusOfRhodeIsland1915(), new CensusOfRhodeIsland1925(), ]; } /** * Where did this census occur, in GEDCOM format. * * @return string */ public function censusPlace(): string { return 'Rhode Island, United States'; } /** * In which language was this census written. * * @return string */ public function censusLanguage(): string { return 'en-US'; } }