. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Census; /** * Definitions for a census */ class CensusOfRhodeIsland1925 extends CensusOfRhodeIsland implements CensusInterface { /** * When did this census occur. * * @return string */ public function censusDate(): string { return 'APR 1925'; } /** * The columns of the census. * * @return array */ public function columns(): array { return [ new CensusColumnSurnameGivenNameInitial($this, 'Name', 'Name'), new CensusColumnRelationToHeadEnglish($this, 'Relation', 'Relationship of this person to head of the family'), new CensusColumnSexMF($this, 'Sex', 'Sex'), new CensusColumnNull($this, 'Race', 'Color or race'), new CensusColumnAge($this, 'Age', 'Age at last birthday'), new CensusColumnBirthPlaceSimple($this, 'BP', 'Place of birth'), new CensusColumnNull($this, 'Cit', 'Citzenship'), ]; } }