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