. */ namespace Fisharebest\Webtrees\Census; use Fisharebest\Webtrees\Individual; /** * Is the individual's father a foreigner. */ class CensusColumnFatherForeign extends AbstractCensusColumn implements CensusColumnInterface { /** * Generate the likely value of this census column, based on available information. * * @param Individual $individual * @param Individual|null $head * * @return string */ public function generate(Individual $individual, Individual $head = null) { $father = $this->father($individual); if ($father && $this->lastPartOfPlace($father->getBirthPlace()) !== $this->place()) { return 'Y'; } else { return ''; } } }