@@ -64,7 +64,7 @@ |
||
64 | 64 | break; |
65 | 65 | } |
66 | 66 | $newrec .= mb_substr($line, 0, $pos) . Gedcom::EOL; |
67 | - $line = $level . ' CONC ' . mb_substr($line, $pos); |
|
67 | + $line = $level . ' CONC ' . mb_substr($line, $pos); |
|
68 | 68 | } while (mb_strlen($line) > Gedcom::LINE_LENGTH); |
69 | 69 | } |
70 | 70 | $newrec .= $line . Gedcom::EOL; |
@@ -320,7 +320,7 @@ discard block |
||
320 | 320 | return $new_path; |
321 | 321 | } |
322 | 322 | |
323 | - $paths[] = $new_path; |
|
323 | + $paths[] = $new_path; |
|
324 | 324 | $visited[$spouse->xref()] = true; |
325 | 325 | } |
326 | 326 | } |
@@ -334,7 +334,7 @@ discard block |
||
334 | 334 | return $new_path; |
335 | 335 | } |
336 | 336 | |
337 | - $paths[] = $new_path; |
|
337 | + $paths[] = $new_path; |
|
338 | 338 | $visited[$child->xref()] = true; |
339 | 339 | } |
340 | 340 | } |
@@ -353,7 +353,7 @@ discard block |
||
353 | 353 | return $new_path; |
354 | 354 | } |
355 | 355 | |
356 | - $paths[] = $new_path; |
|
356 | + $paths[] = $new_path; |
|
357 | 357 | $visited[$spouse->xref()] = true; |
358 | 358 | } |
359 | 359 | } |
@@ -367,7 +367,7 @@ discard block |
||
367 | 367 | return $new_path; |
368 | 368 | } |
369 | 369 | |
370 | - $paths[] = $new_path; |
|
370 | + $paths[] = $new_path; |
|
371 | 371 | $visited[$child->xref()] = true; |
372 | 372 | } |
373 | 373 | } |
@@ -121,7 +121,7 @@ |
||
121 | 121 | |
122 | 122 | // If we are only showing living individuals, then we don't need to search for DEAT events. |
123 | 123 | if ($filter) { |
124 | - $event_array = array_diff($event_array, Gedcom::DEATH_EVENTS); |
|
124 | + $event_array = array_diff($event_array, Gedcom::DEATH_EVENTS); |
|
125 | 125 | } |
126 | 126 | |
127 | 127 | $events_filter = implode('|', $event_array); |
@@ -121,7 +121,7 @@ |
||
121 | 121 | |
122 | 122 | // If we are only showing living individuals, then we don't need to search for DEAT events. |
123 | 123 | if ($filter) { |
124 | - $event_array = array_diff($event_array, Gedcom::DEATH_EVENTS); |
|
124 | + $event_array = array_diff($event_array, Gedcom::DEATH_EVENTS); |
|
125 | 125 | } |
126 | 126 | |
127 | 127 | $events_filter = implode('|', $event_array); |
@@ -76,7 +76,7 @@ |
||
76 | 76 | { |
77 | 77 | $latest_version = $this->fetchLatestVersion(); |
78 | 78 | |
79 | - [, , $url] = explode('|', $latest_version . '||'); |
|
79 | + [,, $url] = explode('|', $latest_version . '||'); |
|
80 | 80 | |
81 | 81 | return $url; |
82 | 82 | } |
@@ -49,7 +49,7 @@ |
||
49 | 49 | */ |
50 | 50 | public function __construct(Tree $tree) |
51 | 51 | { |
52 | - $this->tree = $tree; |
|
52 | + $this->tree = $tree; |
|
53 | 53 | $this->country_service = new CountryService(); |
54 | 54 | } |
55 | 55 |
@@ -156,7 +156,7 @@ discard block |
||
156 | 156 | // Ambiguous dates - don't override calendar escape |
157 | 157 | if ($cal === '') { |
158 | 158 | if (preg_match('/^(JAN|FEB|MAR|APR|MAY|JUN|JUL|AUG|SEP|OCT|NOV|DEC)$/', $m)) { |
159 | - $cal = GregorianDate::ESCAPE; |
|
159 | + $cal = GregorianDate::ESCAPE; |
|
160 | 160 | } elseif (preg_match('/^[345]\d\d\d$/', $y)) { |
161 | 161 | // Year 3000-5999 |
162 | 162 | $cal = JewishDate::ESCAPE; |
@@ -451,7 +451,7 @@ discard block |
||
451 | 451 | public function addYears(int $years, string $qualifier = ''): Date |
452 | 452 | { |
453 | 453 | $tmp = clone $this; |
454 | - $tmp->date1->year += $years; |
|
454 | + $tmp->date1->year += $years; |
|
455 | 455 | $tmp->date1->month = 0; |
456 | 456 | $tmp->date1->day = 0; |
457 | 457 | $tmp->date1->setJdFromYmd(); |
@@ -87,7 +87,7 @@ |
||
87 | 87 | public function getMenu(Tree $tree): ?Menu |
88 | 88 | { |
89 | 89 | $submenus = $this->module_service->findByComponent(ModuleListInterface::class, $tree, Auth::user()) |
90 | - ->map(static function (ModuleListInterface $module) use ($tree): ?Menu { |
|
90 | + ->map(static function (ModuleListInterface $module) use ($tree) : ?Menu { |
|
91 | 91 | return $module->listMenu($tree); |
92 | 92 | }) |
93 | 93 | ->filter() |
@@ -721,7 +721,7 @@ |
||
721 | 721 | public function findByName(string $module_name, bool $include_disabled = false): ?ModuleInterface |
722 | 722 | { |
723 | 723 | return $this->all($include_disabled) |
724 | - ->first(static function (ModuleInterface $module) use ($module_name): bool { |
|
724 | + ->first(static function (ModuleInterface $module) use ($module_name) : bool { |
|
725 | 725 | return $module->name() === $module_name; |
726 | 726 | }); |
727 | 727 | } |