. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Census; use Fisharebest\Webtrees\Individual; final readonly class CensusColumnFatherForeign extends AbstractCensusColumn implements CensusColumnInterface { public function generate(Individual $individual, Individual $head): string { $father = $this->father($individual); if ( $father instanceof Individual && $this->lastPartOfPlace($father->getBirthPlace()->gedcomName()) !== $this->place() ) { return 'Y'; } return ''; } }