. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Census; /** * Definitions for a census */ class RegisterOfWales1939 extends CensusOfWales implements CensusInterface { /** * When did this census occur. * * @return string */ public function censusDate(): string { return '29 SEP 1939'; } /** * The columns of the census. * * @return array */ public function columns(): array { return [ new CensusColumnNull($this, 'Schedule', 'Schedule Number'), new CensusColumnNull($this, 'SubNum', 'Schedule Sub Number'), new CensusColumnSurnameGivenNames($this, 'Name', 'Surname & other names'), new CensusColumnNull($this, 'Role', 'For institutions only – for example, Officer, Visitor, Servant, Patient, Inmate'), new CensusColumnSexMF($this, 'Sex', 'Male or Female'), new CensusColumnBirthDayMonthYear($this, 'DOB', 'Date of birth'), new CensusColumnConditionEnglish($this, 'MC', 'Marital Condition - Married, Single, Unmarried, Widowed or Divorced'), new CensusColumnOccupation($this, 'Occupation', 'Occupation'), ]; } }