Passed
Push — scrutinizer-patch-1 ( c7d376 )
by
unknown
13:36 queued 05:35
created
app/Http/Controllers/IndividualController.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -378,8 +378,8 @@
 block discarded – undo
378 378
             $edit_links = FontAwesome::linkIcon('edit', I18N::translate('Edit the gender'), [
379 379
                 'class' => 'btn btn-link',
380 380
                 'href'  => route('edit-fact', ['xref'    => $individual->xref(),
381
-                                               'fact_id' => $fact->id(),
382
-                                               'ged'     => $individual->tree()->name(),
381
+                                                'fact_id' => $fact->id(),
382
+                                                'ged'     => $individual->tree()->name(),
383 383
                 ]),
384 384
             ]);
385 385
         } else {
Please login to merge, or discard this patch.
app/Http/Controllers/ListController.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -216,7 +216,8 @@  discard block
 block discarded – undo
216 216
                     <li class="wt-initials-list-item d-flex">
217 217
                         <?php if ($count > 0) : ?>
218 218
                             <a href="<?= e(route($route, ['alpha' => $letter, 'ged' => $tree->name()])) ?>" class="wt-initial<?= $letter === $alpha ? ' active' : ''?> '" title="<?= I18N::number($count) ?>"><?= $this->surnameInitial((string) $letter) ?></a>
219
-                        <?php else : ?>
219
+                        <?php else {
220
+    : ?>
220 221
                             <span class="wt-initial text-muted"><?= $this->surnameInitial((string) $letter) ?></span>
221 222
 
222 223
                         <?php endif ?>
@@ -270,6 +271,7 @@  discard block
 block discarded – undo
270 271
 
271 272
             if ($show === 'indi' || $show === 'surn') {
272 273
                 $surns = $this->surnames($tree, $surname, $alpha, $show_marnm === 'yes', $families);
274
+}
273 275
                 if ($show === 'surn') {
274 276
                     // Show the surname list
275 277
                     switch ($tree->getPreference('SURNAME_LIST_STYLE')) {
Please login to merge, or discard this patch.
app/Http/Controllers/DescendantsChartController.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -190,8 +190,8 @@  discard block
 block discarded – undo
190 190
         foreach ($person->getChildFamilies() as $cfamily) {
191 191
             foreach ($cfamily->getSpouses() as $parent) {
192 192
                 echo FontAwesome::linkIcon('arrow-up', I18N::translate('Start at parents'), ['href' => route('descendants', ['ged'         => $parent->tree()->name(),
193
-                                                                                                                             'xref'        => $parent->xref(),
194
-                                                                                                                             'generations' => $generations,
193
+                                                                                                                                'xref'        => $parent->xref(),
194
+                                                                                                                                'generations' => $generations,
195 195
                 ]),
196 196
                 ]);
197 197
                 // only show the arrow for one of the parents
@@ -273,8 +273,8 @@  discard block
 block discarded – undo
273 273
             foreach ($spouse->getChildFamilies() as $cfamily) {
274 274
                 foreach ($cfamily->getSpouses() as $parent) {
275 275
                     echo FontAwesome::linkIcon('arrow-up', I18N::translate('Start at parents'), ['href' => route('descendants', ['ged'         => $parent->tree()->name(),
276
-                                                                                                                                 'xref'        => $parent->xref(),
277
-                                                                                                                                 'generations' => $generations,
276
+                                                                                                                                    'xref'        => $parent->xref(),
277
+                                                                                                                                    'generations' => $generations,
278 278
                     ]),
279 279
                     ]);
280 280
                     // only show the arrow for one of the parents
Please login to merge, or discard this patch.
app/Functions/Functions.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -320,7 +320,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
                     }
Please login to merge, or discard this patch.
app/Module/DescendancyChartModule.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@
 block discarded – undo
73 73
         return new Menu(
74 74
             $this->getTitle(),
75 75
             route('descendants', ['ged'  => $individual->tree()->name(),
76
-                                  'xref' => $individual->xref(),
76
+                                    'xref' => $individual->xref(),
77 77
             ]),
78 78
             'menu-chart-descendants',
79 79
             ['rel' => 'nofollow']
Please login to merge, or discard this patch.
app/Module/FamilyBookChartModule.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@
 block discarded – undo
73 73
         return new Menu(
74 74
             $this->getTitle(),
75 75
             route('family-book', ['ged'  => $individual->tree()->name(),
76
-                                  'xref' => $individual->xref(),
76
+                                    'xref' => $individual->xref(),
77 77
             ]),
78 78
             'menu-chart-familybook',
79 79
             ['rel' => 'nofollow']
Please login to merge, or discard this patch.
app/Module/OnThisDayModule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.
app/Census/CensusColumnNationality.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
         }
53 53
 
54 54
         // Did we emigrate or naturalise?
55
-        foreach ($individual->facts(['IMMI' ,'EMIG', 'NATU'], true) as $fact) {
55
+        foreach ($individual->facts(['IMMI', 'EMIG', 'NATU'], true) as $fact) {
56 56
             if (Date::compare($fact->date(), $this->date()) <= 0) {
57 57
                 $place = $fact->place()->getGedcomName();
58 58
             }
Please login to merge, or discard this patch.
app/Module/UpcomingAnniversariesModule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.