@@ -828,7 +828,7 @@ |
||
| 828 | 828 | // Until this can be re-designed, we need this assertion to help static analysis tools. |
| 829 | 829 | assert($this->current_element instanceof ReportBaseElement, new LogicException()); |
| 830 | 830 | |
| 831 | - $this->wt_report = array_pop($this->wt_report_stack); |
|
| 831 | + $this->wt_report = array_pop($this->wt_report_stack); |
|
| 832 | 832 | $this->wt_report->addElement($this->current_element); |
| 833 | 833 | } |
| 834 | 834 | |
@@ -78,7 +78,7 @@ |
||
| 78 | 78 | public function getIndividuals(Tree $tree, string $request): string |
| 79 | 79 | { |
| 80 | 80 | $json_requests = explode(';', $request); |
| 81 | - $r = []; |
|
| 81 | + $r = []; |
|
| 82 | 82 | foreach ($json_requests as $json_request) { |
| 83 | 83 | $firstLetter = substr($json_request, 0, 1); |
| 84 | 84 | $json_request = substr($json_request, 1); |
@@ -73,7 +73,7 @@ |
||
| 73 | 73 | |
| 74 | 74 | $users = ['' => '']; |
| 75 | 75 | foreach ($this->user_service->all() as $user) { |
| 76 | - $user_name = $user->userName(); |
|
| 76 | + $user_name = $user->userName(); |
|
| 77 | 77 | $users[$user_name] = $user_name; |
| 78 | 78 | } |
| 79 | 79 | |
@@ -192,7 +192,7 @@ |
||
| 192 | 192 | '<div class="gedcom-data" dir="ltr">' . |
| 193 | 193 | preg_replace_callback( |
| 194 | 194 | '/@(' . Gedcom::REGEX_XREF . ')@/', |
| 195 | - static function (array $match) use ($tree): string { |
|
| 195 | + static function (array $match) use ($tree) : string { |
|
| 196 | 196 | $record = GedcomRecord::getInstance($match[1], $tree); |
| 197 | 197 | |
| 198 | 198 | return $record ? '<a href="' . e($record->url()) . '">' . $match[0] . '</a>' : $match[0]; |
@@ -32,7 +32,7 @@ |
||
| 32 | 32 | { |
| 33 | 33 | public const RECORD_TYPE = 'SOUR'; |
| 34 | 34 | |
| 35 | - protected const ROUTE_NAME = SourcePage::class; |
|
| 35 | + protected const ROUTE_NAME = SourcePage::class; |
|
| 36 | 36 | |
| 37 | 37 | /** |
| 38 | 38 | * A closure which will create a record from a database row. |
@@ -174,7 +174,7 @@ |
||
| 174 | 174 | // Turn each filename into a row for the table |
| 175 | 175 | $original = $this->findOriginalFileFromThumbnail($thumbnail); |
| 176 | 176 | |
| 177 | - $original_url = route('unused-media-thumbnail', [ |
|
| 177 | + $original_url = route('unused-media-thumbnail', [ |
|
| 178 | 178 | 'path' => $original, |
| 179 | 179 | 'w' => 100, |
| 180 | 180 | 'h' => 100, |
@@ -312,7 +312,7 @@ |
||
| 312 | 312 | $title = I18N::translate('Edit the story') . ' — ' . e($tree->title()); |
| 313 | 313 | } |
| 314 | 314 | |
| 315 | - $individual = Individual::getInstance($xref, $tree); |
|
| 315 | + $individual = Individual::getInstance($xref, $tree); |
|
| 316 | 316 | |
| 317 | 317 | return $this->viewResponse('modules/stories/edit', [ |
| 318 | 318 | 'block_id' => $block_id, |
@@ -513,7 +513,7 @@ discard block |
||
| 513 | 513 | */ |
| 514 | 514 | private function applyFilter(array $facts, string $filterof, string $filtersx): array |
| 515 | 515 | { |
| 516 | - $filtered = []; |
|
| 516 | + $filtered = []; |
|
| 517 | 517 | $hundred_years_ago = Carbon::now()->subYears(100)->julianDay(); |
| 518 | 518 | foreach ($facts as $fact) { |
| 519 | 519 | $record = $fact->record(); |
@@ -586,7 +586,7 @@ discard block |
||
| 586 | 586 | $html = ''; |
| 587 | 587 | |
| 588 | 588 | foreach ($list as $id => $facts) { |
| 589 | - $tmp = GedcomRecord::getInstance($id, $tree); |
|
| 589 | + $tmp = GedcomRecord::getInstance($id, $tree); |
|
| 590 | 590 | $html .= $tag1 . '<a href="' . e($tmp->url()) . '">' . $tmp->fullName() . '</a> '; |
| 591 | 591 | $html .= '<div class="indent">' . $facts . '</div>' . $tag2; |
| 592 | 592 | } |
@@ -537,7 +537,7 @@ discard block |
||
| 537 | 537 | $tree = $request->getAttribute('tree'); |
| 538 | 538 | assert($tree instanceof Tree); |
| 539 | 539 | |
| 540 | - $xref = $request->getQueryParams()['xref']; |
|
| 540 | + $xref = $request->getQueryParams()['xref']; |
|
| 541 | 541 | |
| 542 | 542 | $individual = Individual::getInstance($xref, $tree); |
| 543 | 543 | $individual = Auth::checkIndividualAccess($individual, true); |
@@ -547,7 +547,7 @@ discard block |
||
| 547 | 547 | $family = Family::getInstance($famid, $tree); |
| 548 | 548 | $family = Auth::checkFamilyAccess($family, true); |
| 549 | 549 | |
| 550 | - $PEDI = $request->getParsedBody()['PEDI']; |
|
| 550 | + $PEDI = $request->getParsedBody()['PEDI']; |
|
| 551 | 551 | |
| 552 | 552 | // Replace any existing child->family link (we may be changing the PEDI); |
| 553 | 553 | $fact_id = ''; |
@@ -619,7 +619,7 @@ discard block |
||
| 619 | 619 | $tree = $request->getAttribute('tree'); |
| 620 | 620 | assert($tree instanceof Tree); |
| 621 | 621 | |
| 622 | - $xref = $request->getQueryParams()['xref']; |
|
| 622 | + $xref = $request->getQueryParams()['xref']; |
|
| 623 | 623 | |
| 624 | 624 | $individual = Individual::getInstance($xref, $tree); |
| 625 | 625 | $individual = Auth::checkIndividualAccess($individual, true); |