@@ -261,7 +261,7 @@ discard block |
||
261 | 261 | $sosa = array_search($individual, $ancestors, true); |
262 | 262 | if (is_int($sosa) && $module instanceof RelationshipsChartModule) { |
263 | 263 | $sosa_class = 'search_hit'; |
264 | - $sosa_html = '<a class="details1 ' . $individual->getBoxStyle() . '" href="' . e($module->chartUrl($individual, ['xref2' => $individuals[1]->xref()])) . '" rel="nofollow" title="' . I18N::translate('Relationships') . '">' . I18N::number($sosa) . '</a>' . self::sosaGeneration($sosa); |
|
264 | + $sosa_html = '<a class="details1 ' . $individual->getBoxStyle() . '" href="' . e($module->chartUrl($individual, ['xref2' => $individuals[1]->xref()])) . '" rel="nofollow" title="' . I18N::translate('Relationships') . '">' . I18N::number($sosa) . '</a>' . self::sosaGeneration($sosa); |
|
265 | 265 | } else { |
266 | 266 | $sosa_class = ''; |
267 | 267 | $sosa_html = ''; |
@@ -297,7 +297,7 @@ discard block |
||
297 | 297 | $sosa = array_search($spouse, $ancestors, true); |
298 | 298 | if (is_int($sosa) && $module instanceof RelationshipsChartModule) { |
299 | 299 | $sosa_class = 'search_hit'; |
300 | - $sosa_html = '<a class="details1 ' . $spouse->getBoxStyle() . '" href="' . e($module->chartUrl($individual, ['xref2' => $individuals[1]->xref()])) . '" rel="nofollow" title="' . I18N::translate('Relationships') . '">' . I18N::number($sosa) . '</a>' . self::sosaGeneration($sosa); |
|
300 | + $sosa_html = '<a class="details1 ' . $spouse->getBoxStyle() . '" href="' . e($module->chartUrl($individual, ['xref2' => $individuals[1]->xref()])) . '" rel="nofollow" title="' . I18N::translate('Relationships') . '">' . I18N::number($sosa) . '</a>' . self::sosaGeneration($sosa); |
|
301 | 301 | } else { |
302 | 302 | $sosa_class = ''; |
303 | 303 | $sosa_html = ''; |
@@ -103,11 +103,11 @@ |
||
103 | 103 | $record = GedcomRecord::getInstance('HEAD', $tree); |
104 | 104 | $fact = $record->getFirstFact('COPR'); |
105 | 105 | if ($fact instanceof Fact) { |
106 | - $COPR = "\n1 COPR " .$fact->value(); |
|
106 | + $COPR = "\n1 COPR " . $fact->value(); |
|
107 | 107 | } |
108 | - $fact = $record->getFirstFact('LANG'); |
|
108 | + $fact = $record->getFirstFact('LANG'); |
|
109 | 109 | if ($fact instanceof Fact) { |
110 | - $LANG = "\n1 LANG " .$fact->value(); |
|
110 | + $LANG = "\n1 LANG " . $fact->value(); |
|
111 | 111 | } |
112 | 112 | // Link to actual SUBM/SUBN records, if they exist |
113 | 113 | $subn = DB::table('other') |
@@ -52,7 +52,7 @@ |
||
52 | 52 | } |
53 | 53 | |
54 | 54 | // Did we emigrate or naturalise? |
55 | - foreach ($individual->facts(['IMMI' ,'EMIG', 'NATU'], true) as $fact) { |
|
55 | + foreach ($individual->facts(['IMMI', 'EMIG', 'NATU'], true) as $fact) { |
|
56 | 56 | if (Date::compare($fact->date(), $this->date()) <= 0) { |
57 | 57 | $place = $fact->place()->gedcomName(); |
58 | 58 | } |
@@ -519,7 +519,7 @@ |
||
519 | 519 | // ... and process the differences |
520 | 520 | $inserted = 0; |
521 | 521 | if ($diff->isNotEmpty()) { |
522 | - $nextRecordId = 1 + (int) DB::table('placelocation')->max('pl_id'); |
|
522 | + $nextRecordId = 1 + (int) DB::table('placelocation')->max('pl_id'); |
|
523 | 523 | |
524 | 524 | foreach ($diff as $place) { |
525 | 525 | // For Westminster, London, England, we must also create England and London, England |
@@ -2579,7 +2579,7 @@ |
||
2579 | 2579 | { |
2580 | 2580 | /** @var ModuleBlockInterface $module */ |
2581 | 2581 | $module = Module::findByComponent('block', $this->tree, Auth::user()) |
2582 | - ->filter(function (ModuleInterface $module) use ($block): bool { |
|
2582 | + ->filter(function (ModuleInterface $module) use ($block) : bool { |
|
2583 | 2583 | return $module->name() === $block && $module->name() !== 'html'; |
2584 | 2584 | }) |
2585 | 2585 | ->first(); |
@@ -49,7 +49,7 @@ |
||
49 | 49 | $color_from = $color_from ?? $chart_color1; |
50 | 50 | $color_to = $color_to ?? $chart_color2; |
51 | 51 | |
52 | - $sizes = explode('x', $size); |
|
52 | + $sizes = explode('x', $size); |
|
53 | 53 | |
54 | 54 | if ($tot_indi === 0) { |
55 | 55 | return ''; |
@@ -135,7 +135,7 @@ |
||
135 | 135 | $decades .= '|' . I18N::number($i); |
136 | 136 | } |
137 | 137 | |
138 | - $chxl .= '1:||' . I18N::translate('century') . '|2:' . $decades . '|3:||' . I18N::translate('Age') . '|'; |
|
138 | + $chxl .= '1:||' . I18N::translate('century') . '|2:' . $decades . '|3:||' . I18N::translate('Age') . '|'; |
|
139 | 139 | $title = I18N::translate('Average age related to death century'); |
140 | 140 | |
141 | 141 | if (\count($rows) > 6 || mb_strlen($title) < 30) { |
@@ -231,7 +231,7 @@ |
||
231 | 231 | */ |
232 | 232 | public function commonDeathPlacesList(): string |
233 | 233 | { |
234 | - $places = $this->queryFactPlaces('DEAT','INDI'); |
|
234 | + $places = $this->queryFactPlaces('DEAT', 'INDI'); |
|
235 | 235 | return $this->renderTop10($places); |
236 | 236 | } |
237 | 237 |
@@ -479,7 +479,7 @@ |
||
479 | 479 | 'age' => $age, |
480 | 480 | ]; |
481 | 481 | |
482 | - $dist[] = $fam->family; |
|
482 | + $dist[] = $fam->family; |
|
483 | 483 | } |
484 | 484 | } elseif (!$one && $child1->canShow() && $child2->canShow()) { |
485 | 485 | $top10[] = [ |