Home
last modified time | relevance | path

Searched refs:gedcomDiff (Results 1 – 9 of 9) sorted by relevance

/webtrees/app/Module/
H A DFixNameSlashesAndSpaces.php111 return $this->data_fix_service->gedcomDiff($record->tree(), $old, $new);
H A DFixMissingDeaths.php113 return $this->data_fix_service->gedcomDiff($record->tree(), $old, $new);
H A DFixPlaceNames.php154 return $this->data_fix_service->gedcomDiff($record->tree(), $old, $new);
H A DFixDuplicateLinks.php208 return $this->data_fix_service->gedcomDiff($record->tree(), $old, $new);
H A DFixCemeteryTag.php145 return $this->data_fix_service->gedcomDiff($record->tree(), $old, $new);
H A DFixWtObjeSortTag.php114 return $this->data_fix_service->gedcomDiff($record->tree(), $old, $new);
H A DFixNameTags.php142 $diffs[] = $this->data_fix_service->gedcomDiff($record->tree(), $old, $new);
H A DFixSearchAndReplace.php331 return $this->data_fix_service->gedcomDiff($record->tree(), $old, $new);
/webtrees/app/Services/
H A DDataFixService.php87 public function gedcomDiff(Tree $tree, string $old_gedcom, string $new_gedcom): string function in Fisharebest\\Webtrees\\Services\\DataFixService