. */ namespace Fisharebest\Webtrees\Census; /** * Definitions for a census */ class Census { /** * @return CensusPlaceInterface[] */ public static function allCensusPlaces() { return [ new CensusOfCzechRepublic, new CensusOfDenmark, new CensusOfDeutschland, new CensusOfEngland, new CensusOfFrance, new CensusOfScotland, new CensusOfUnitedStates, new CensusOfWales, ]; } }