@@ -694,7 +694,7 @@ discard block |
||
| 694 | 694 | } catch (Throwable $exception) { |
| 695 | 695 | $module_name = basename(dirname($filename)); |
| 696 | 696 | $message = 'Fatal error in module: ' . $module_name; |
| 697 | - $message .= '<br>' . $exception; |
|
| 697 | + $message .= '<br>' . $exception; |
|
| 698 | 698 | FlashMessages::addMessage($message, 'danger'); |
| 699 | 699 | } |
| 700 | 700 | return null; |
@@ -805,7 +805,7 @@ discard block |
||
| 805 | 805 | public function findByName(string $module_name, bool $include_disabled = false): ?ModuleInterface |
| 806 | 806 | { |
| 807 | 807 | return $this->all($include_disabled) |
| 808 | - ->first(static function (ModuleInterface $module) use ($module_name): bool { |
|
| 808 | + ->first(static function (ModuleInterface $module) use ($module_name) : bool { |
|
| 809 | 809 | return $module->name() === $module_name; |
| 810 | 810 | }); |
| 811 | 811 | } |
@@ -57,7 +57,7 @@ |
||
| 57 | 57 | |
| 58 | 58 | // Create a dummy family record, so we can create new/empty facts. |
| 59 | 59 | $dummy = Factory::family()->new('', '0 @@ FAM', null, $tree); |
| 60 | - $facts = [ |
|
| 60 | + $facts = [ |
|
| 61 | 61 | 'f' => [ |
| 62 | 62 | new Fact('1 MARR', $dummy, ''), |
| 63 | 63 | ], |
@@ -582,7 +582,7 @@ discard block |
||
| 582 | 582 | for ($j = 0; $j < $ct; $j++) { |
| 583 | 583 | if (strpos($match[$j][1], '@') === false) { |
| 584 | 584 | $source = e($match[$j][1] . preg_replace('/\n\d CONT ?/', "\n", $match[$j][2])); |
| 585 | - $data .= '<div class="fact_SOUR"><span class="label">' . I18N::translate('Source') . ':</span> <span class="field" dir="auto">' . Filter::formatText($source, $tree) . '</span></div>'; |
|
| 585 | + $data .= '<div class="fact_SOUR"><span class="label">' . I18N::translate('Source') . ':</span> <span class="field" dir="auto">' . Filter::formatText($source, $tree) . '</span></div>'; |
|
| 586 | 586 | } |
| 587 | 587 | } |
| 588 | 588 | // Find source for each fact |
@@ -600,7 +600,7 @@ discard block |
||
| 600 | 600 | } |
| 601 | 601 | $srec = substr($factrec, $spos1, $spos2 - $spos1); |
| 602 | 602 | $lt = preg_match_all("/$nlevel \w+/", $srec, $matches); |
| 603 | - $data .= '<div class="fact_SOUR">'; |
|
| 603 | + $data .= '<div class="fact_SOUR">'; |
|
| 604 | 604 | $id = 'collapse-' . Uuid::uuid4()->toString(); |
| 605 | 605 | $expanded = (bool) $tree->getPreference('EXPAND_SOURCES'); |
| 606 | 606 | if ($lt > 0) { |
@@ -315,14 +315,14 @@ |
||
| 315 | 315 | |
| 316 | 316 | if ($place_id === 0) { |
| 317 | 317 | $breadcrumbs[] = I18N::translate('Add'); |
| 318 | - $title .= ' — ' . I18N::translate('Add'); |
|
| 318 | + $title .= ' — ' . I18N::translate('Add'); |
|
| 319 | 319 | $latitude = ''; |
| 320 | 320 | $longitude = ''; |
| 321 | 321 | $map_bounds = $parent->boundingRectangle(); |
| 322 | 322 | $marker_position = [$parent->latitude(), $parent->longitude()]; |
| 323 | 323 | } else { |
| 324 | 324 | $breadcrumbs[] = I18N::translate('Edit'); |
| 325 | - $title .= ' — ' . I18N::translate('Edit'); |
|
| 325 | + $title .= ' — ' . I18N::translate('Edit'); |
|
| 326 | 326 | $latitude = $location->latitude(); |
| 327 | 327 | $longitude = $location->longitude(); |
| 328 | 328 | $map_bounds = $location->boundingRectangle(); |