Lines Matching refs:tree
87 * @param Tree $tree
91 public function fixOptions(Tree $tree): string argument
126 * @param Tree $tree
131 protected function familiesToFix(Tree $tree, array $params): Collection|null argument
137 $query = DB::table('families')->where('f_file', '=', $tree->id());
147 * @param Tree $tree
152 protected function individualsToFix(Tree $tree, array $params): Collection|null argument
159 ->where('i_file', '=', $tree->id());
170 * @param Tree $tree
175 protected function locationsToFix(Tree $tree, array $params): Collection|null argument
182 ->where('o_file', '=', $tree->id())
194 * @param Tree $tree
199 protected function mediaToFix(Tree $tree, array $params): Collection|null argument
206 ->where('m_file', '=', $tree->id());
217 * @param Tree $tree
222 protected function notesToFix(Tree $tree, array $params): Collection|null argument
229 ->where('o_file', '=', $tree->id())
241 * @param Tree $tree
246 protected function repositoriesToFix(Tree $tree, array $params): Collection|null argument
253 ->where('o_file', '=', $tree->id())
265 * @param Tree $tree
270 protected function sourcesToFix(Tree $tree, array $params): Collection|null argument
276 $query = $this->sourcesToFixQuery($tree, $params);
287 * @param Tree $tree
292 protected function submittersToFix(Tree $tree, array $params): Collection|null argument
298 $query = $this->submittersToFixQuery($tree, $params);
331 return $this->data_fix_service->gedcomDiff($record->tree(), $old, $new);