Passed
Push — dev ( 9fabb1...8976f1 )
by Greg
06:13
created
app/Http/RequestHandlers/AddSpouseToFamilyPage.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
         $surname_tradition = SurnameTradition::create($tree->getPreference('SURNAME_TRADITION'));
80 80
         $spouse            = $family->spouses()->first();
81 81
         assert($spouse instanceof Individual);
82
-        $names      = $surname_tradition->newSpouseNames($spouse, $sex);
82
+        $names = $surname_tradition->newSpouseNames($spouse, $sex);
83 83
 
84 84
         $facts = [
85 85
             'i' => $this->gedcom_edit_service->newIndividualFacts($tree, $sex, $names),
Please login to merge, or discard this patch.
app/Services/GedcomEditService.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
     {
69 69
         $dummy = Registry::familyFactory()->new('', '0 @@ FAM', null, $tree);
70 70
         $tags  = new Collection(explode(',', $tree->getPreference('QUICK_REQUIRED_FAMFACTS')));
71
-        $facts = $tags->map(fn (string $tag): Fact => $this->createNewFact($dummy, $tag));
71
+        $facts = $tags->map(fn(string $tag): Fact => $this->createNewFact($dummy, $tag));
72 72
 
73 73
         return Fact::sortFacts($facts);
74 74
     }
@@ -84,9 +84,9 @@  discard block
 block discarded – undo
84 84
     {
85 85
         $dummy      = Registry::individualFactory()->new('', '0 @@ INDI', null, $tree);
86 86
         $tags       = new Collection(explode(',', $tree->getPreference('QUICK_REQUIRED_FACTS')));
87
-        $facts      = $tags->map(fn (string $tag): Fact => $this->createNewFact($dummy, $tag));
87
+        $facts      = $tags->map(fn(string $tag): Fact => $this->createNewFact($dummy, $tag));
88 88
         $sex_fact   = new Collection([new Fact('1 SEX ' . $sex, $dummy, '')]);
89
-        $name_facts = Collection::make($names)->map(static fn (string $gedcom): Fact => new Fact($gedcom, $dummy, ''));
89
+        $name_facts = Collection::make($names)->map(static fn(string $gedcom): Fact => new Fact($gedcom, $dummy, ''));
90 90
 
91 91
         return $sex_fact->concat($name_facts)->concat(Fact::sortFacts($facts));
92 92
     }
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
                 }
153 153
             }
154 154
 
155
-            if ($values[$i] !== '' || $children_with_values  && !$element instanceof AbstractXrefElement) {
155
+            if ($values[$i] !== '' || $children_with_values && !$element instanceof AbstractXrefElement) {
156 156
                 if ($values[$i] === '') {
157 157
                     $gedcom_lines[] = $levels[$i] . ' ' . $tags[$i];
158 158
                 } else {
@@ -218,15 +218,15 @@  discard block
 block discarded – undo
218 218
     {
219 219
         $subtags = Registry::elementFactory()->make($record->tag())->subtags();
220 220
 
221
-        $subtags = array_filter($subtags, static fn (string $v, string $k) => !str_ends_with($v, ':1') || $record->facts([$k])->isEmpty(), ARRAY_FILTER_USE_BOTH);
221
+        $subtags = array_filter($subtags, static fn(string $v, string $k) => !str_ends_with($v, ':1') || $record->facts([$k])->isEmpty(), ARRAY_FILTER_USE_BOTH);
222 222
 
223 223
         $subtags = array_keys($subtags);
224 224
 
225 225
         // Don't include facts/events that we have hidden in the control panel.
226
-        $subtags = array_filter($subtags, fn (string $subtag): bool => !$this->isHiddenTag($record->tag() . ':' . $subtag));
226
+        $subtags = array_filter($subtags, fn(string $subtag): bool => !$this->isHiddenTag($record->tag() . ':' . $subtag));
227 227
 
228 228
         if (!$include_hidden) {
229
-            $fn_hidden = fn (string $t): bool => !$this->isHiddenTag($record->tag() . ':' . $t);
229
+            $fn_hidden = fn(string $t): bool => !$this->isHiddenTag($record->tag() . ':' . $t);
230 230
             $subtags   = array_filter($subtags, $fn_hidden);
231 231
         }
232 232
 
@@ -317,7 +317,7 @@  discard block
 block discarded – undo
317 317
     private function isHiddenTag(string $tag): bool
318 318
     {
319 319
         // Function to filter hidden tags.
320
-        $fn_hide = static fn (string $x): bool => (bool) Site::getPreference('HIDE_' . $x);
320
+        $fn_hide = static fn(string $x): bool => (bool) Site::getPreference('HIDE_' . $x);
321 321
 
322 322
         $preferences = array_filter(Gedcom::HIDDEN_TAGS, $fn_hide, ARRAY_FILTER_USE_KEY);
323 323
         $preferences = array_values($preferences);
Please login to merge, or discard this patch.