Passed
Push — master ( 91ea93...5bc5bf )
by Greg
06:11
created
app/Module/ClippingsCartModule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -321,7 +321,7 @@
 block discarded – undo
321 321
 
322 322
         // Create a source, to indicate the source of the data.
323 323
         $record = "0 @WEBTREES@ SOUR\n1 TITL " . $base_url;
324
-        $author   = $this->user_service->find((int) $tree->getPreference('CONTACT_USER_ID'));
324
+        $author = $this->user_service->find((int) $tree->getPreference('CONTACT_USER_ID'));
325 325
         if ($author !== null) {
326 326
             $record .= "\n1 AUTH " . $author->realName();
327 327
         }
Please login to merge, or discard this patch.
app/Statistics/Repository/FamilyDatesRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@
 block discarded – undo
79 79
             ->select(['d_gid as id', 'd_year as year', 'd_fact AS fact', 'd_type AS type'])
80 80
             ->where('d_file', '=', $this->tree->id())
81 81
             ->where('d_fact', '=', $fact)
82
-            ->where('d_julianday1', '=', function (Builder $query) use ($operation, $fact): void {
82
+            ->where('d_julianday1', '=', function (Builder $query) use ($operation, $fact) : void {
83 83
                 $query->selectRaw($operation . '(d_julianday1)')
84 84
                     ->from('dates')
85 85
                     ->where('d_file', '=', $this->tree->id())
Please login to merge, or discard this patch.
app/Http/RequestHandlers/EditFactAction.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -402,7 +402,7 @@
 block discarded – undo
402 402
         $NAME = $params['NAME'] ?? '';
403 403
 
404 404
         if ($NAME !== '') {
405
-            $newged     .= "\n1 NAME " . $NAME;
405
+            $newged .= "\n1 NAME " . $NAME;
406 406
             $name_facts = [
407 407
                 'TYPE',
408 408
                 'NPFX',
Please login to merge, or discard this patch.
app/Functions/FunctionsPrintFacts.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -582,7 +582,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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) {
Please login to merge, or discard this patch.
app/Http/Controllers/Admin/LocationController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -315,14 +315,14 @@
 block discarded – undo
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();
Please login to merge, or discard this patch.