. */ namespace Fisharebest\Webtrees\Census; use Fisharebest\Webtrees\Individual; /** * Birth place of the individual's fther. */ class CensusColumnFatherBirthPlace extends AbstractCensusColumn implements CensusColumnInterface { /** * Generate the likely value of this census column, based on available information. * * @param Individual $individual * * @return string */ public function generate(Individual $individual) { $father = $this->father($individual); if ($father) { return $father->getBirthPlace(); } else { return ''; } } }