. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Census; /** * Definitions for a census */ class CensusOfUnitedStates extends Census implements CensusPlaceInterface { /** * All available censuses for this census place. * * @return CensusInterface[] */ public function allCensusDates(): array { return [ new CensusOfUnitedStates1790(), new CensusOfUnitedStates1800(), new CensusOfUnitedStates1810(), new CensusOfUnitedStates1820(), new CensusOfUnitedStates1830(), new CensusOfUnitedStates1840(), new CensusOfUnitedStates1850(), new CensusOfUnitedStates1860(), new CensusOfUnitedStates1870(), new CensusOfUnitedStates1880(), new CensusOfUnitedStates1890(), new CensusOfUnitedStates1900(), new CensusOfUnitedStates1910(), new CensusOfUnitedStates1920(), new CensusOfUnitedStates1930(), new CensusOfUnitedStates1940(), ]; } /** * Where did this census occur, in GEDCOM format. * * @return string */ public function censusPlace(): string { return 'United States'; } }