. */ namespace Fisharebest\Webtrees\Census; use Fisharebest\Webtrees\Date; /** * Definitions for a census */ class CensusOfEngland1861 extends CensusOfEngland implements CensusInterface { /** * When did this census occur. * * @return string */ public function censusDate() { return '07 MAR 1861'; } /** * The columns of the census. * * @return CensusColumnInterface[] */ public function columns() { return array( new CensusColumnFullName($this), ); } }