Lines Matching refs:params

62     public function recordsToFix(Tree $tree, array $params): Collection  argument
64 $families = $this->familiesToFix($tree, $params);
65 $individuals = $this->individualsToFix($tree, $params);
66 $locations = $this->locationsToFix($tree, $params);
67 $media = $this->mediaToFix($tree, $params);
68 $notes = $this->notesToFix($tree, $params);
69 $repositories = $this->repositoriesToFix($tree, $params);
70 $sources = $this->sourcesToFix($tree, $params);
71 $submitters = $this->submittersToFix($tree, $params);
120 public function doesRecordNeedUpdate(GedcomRecord $record, array $params): bool argument
133 public function previewUpdate(GedcomRecord $record, array $params): string argument
146 public function updateRecord(GedcomRecord $record, array $params): void argument
158 protected function familiesToFix(Tree $tree, array $params): Collection|null argument
169 protected function familiesToFixQuery(Tree $tree, array $params): Builder argument
174 if (isset($params['start'], $params['end'])) {
175 $query->whereBetween('f_id', [$params['start'], $params['end']]);
189 protected function individualsToFix(Tree $tree, array $params): Collection|null argument
200 protected function individualsToFixQuery(Tree $tree, array $params): Builder argument
205 if (isset($params['start'], $params['end'])) {
206 $query->whereBetween('i_id', [$params['start'], $params['end']]);
220 protected function locationsToFix(Tree $tree, array $params): Collection|null argument
231 protected function locationsToFixQuery(Tree $tree, array $params): Builder argument
237 if (isset($params['start'], $params['end'])) {
238 $query->whereBetween('o_id', [$params['start'], $params['end']]);
252 protected function mediaToFix(Tree $tree, array $params): Collection|null argument
263 protected function mediaToFixQuery(Tree $tree, array $params): Builder argument
268 if (isset($params['start'], $params['end'])) {
269 $query->whereBetween('m_id', [$params['start'], $params['end']]);
283 protected function notesToFix(Tree $tree, array $params): Collection|null argument
294 protected function notesToFixQuery(Tree $tree, array $params): Builder argument
300 if (isset($params['start'], $params['end'])) {
301 $query->whereBetween('o_id', [$params['start'], $params['end']]);
315 protected function repositoriesToFix(Tree $tree, array $params): Collection|null argument
326 protected function repositoriesToFixQuery(Tree $tree, array $params): Builder argument
332 if (isset($params['start'], $params['end'])) {
333 $query->whereBetween('o_id', [$params['start'], $params['end']]);
347 protected function sourcesToFix(Tree $tree, array $params): Collection|null argument
358 protected function sourcesToFixQuery(Tree $tree, array $params): Builder argument
363 if (isset($params['start'], $params['end'])) {
364 $query->whereBetween('s_id', [$params['start'], $params['end']]);
378 protected function submittersToFix(Tree $tree, array $params): Collection|null argument
389 protected function submittersToFixQuery(Tree $tree, array $params): Builder argument
395 if (isset($params['start'], $params['end'])) {
396 $query->whereBetween('o_id', [$params['start'], $params['end']]);