. */ namespace Fisharebest\Webtrees\Census; use Fisharebest\Webtrees\Date; /** * Definitions for a census */ class CensusOfDenmark1870 extends CensusOfDenmark implements CensusInterface { /** * When did this census occur. * * @return string */ public function censusDate() { return '01 FEB 1870'; } /** * The columns of the census. * * @return CensusColumnInterface[] */ public function columns() { return array( new CensusColumnFullName($this, '', ''), new CensusColumnAge($this, '', ''), new CensusColumnCondition($this, '', ''), new CensusColumnRelationToHead($this, '', ''), new CensusColumnOccupation($this, '', ''), new CensusColumnBirthPlace($this, '', ''), ); } }