Passed
Push — master ( 9586c1...b46c87 )
by Greg
06:47
created
app/Http/Controllers/EditGedcomRecordController.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/Module/TimelineChartModule.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
         '_TODO',
68 68
         'CHAN',
69 69
     ];
70
-    protected const BHEIGHT   = 30;
70
+    protected const BHEIGHT = 30;
71 71
 
72 72
     // Box height
73 73
 
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
 
153 153
         $params = (array) $request->getParsedBody();
154 154
 
155
-        $add  = $params['add'] ?? '';
155
+        $add = $params['add'] ?? '';
156 156
 
157 157
         Auth::checkComponentAccess($this, 'chart', $tree, $user);
158 158
 
Please login to merge, or discard this patch.
app/Http/Controllers/EditIndividualController.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -545,7 +545,7 @@  discard block
 block discarded – undo
545 545
         $tree = $request->getAttribute('tree');
546 546
         assert($tree instanceof Tree);
547 547
 
548
-        $xref  = $request->getQueryParams()['xref'];
548
+        $xref = $request->getQueryParams()['xref'];
549 549
 
550 550
         $individual = Individual::getInstance($xref, $tree);
551 551
         $individual = Auth::checkIndividualAccess($individual, true);
@@ -557,7 +557,7 @@  discard block
 block discarded – undo
557 557
         $family = Family::getInstance($famid, $tree);
558 558
         $family = Auth::checkFamilyAccess($family, true);
559 559
 
560
-        $PEDI  = $params['PEDI'];
560
+        $PEDI = $params['PEDI'];
561 561
 
562 562
         // Replace any existing child->family link (we may be changing the PEDI);
563 563
         $fact_id = '';
@@ -629,7 +629,7 @@  discard block
 block discarded – undo
629 629
         $tree = $request->getAttribute('tree');
630 630
         assert($tree instanceof Tree);
631 631
 
632
-        $xref   = $request->getQueryParams()['xref'];
632
+        $xref = $request->getQueryParams()['xref'];
633 633
 
634 634
         $individual = Individual::getInstance($xref, $tree);
635 635
         $individual = Auth::checkIndividualAccess($individual, true);
Please login to merge, or discard this patch.