Passed
Push — main ( bf0653...399add )
by Greg
07:14
created
app/Module/IndividualListModule.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -197,7 +197,7 @@  discard block
 block discarded – undo
197 197
 
198 198
 
199 199
         // Make sure parameters are consistent with each other.
200
-        if ($show_all_firstnames ==='yes') {
200
+        if ($show_all_firstnames === 'yes') {
201 201
             $falpha = '';
202 202
         }
203 203
 
@@ -638,11 +638,11 @@  discard block
 block discarded – undo
638 638
      */
639 639
     protected function surnameInitials(array $all_surnames): array
640 640
     {
641
-        $initials    = [];
641
+        $initials = [];
642 642
 
643 643
         // Ensure our own language comes before others.
644 644
         foreach (I18N::language()->alphabet() as $initial) {
645
-            $initials[$initial]    = 0;
645
+            $initials[$initial] = 0;
646 646
         }
647 647
 
648 648
         foreach ($all_surnames as $surn => $surnames) {
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -289,7 +289,8 @@  discard block
 block discarded – undo
289 289
                     <li class="wt-initials-list-item d-flex">
290 290
                         <?php if ($count > 0) : ?>
291 291
                             <a href="<?= e($this->listUrl($tree, ['alpha' => $letter, 'show_marnm' => $show_marnm, 'tree' => $tree->name()])) ?>" class="wt-initial px-1<?= $letter === $alpha ? ' active' : '' ?> '" title="<?= I18N::number($count) ?>"><?= $this->displaySurnameInitial((string) $letter) ?></a>
292
-                        <?php else : ?>
292
+                        <?php else {
293
+    : ?>
293 294
                             <span class="wt-initial px-1 text-muted"><?= $this->displaySurnameInitial((string) $letter) ?></span>
294 295
 
295 296
                         <?php endif ?>
@@ -344,6 +345,7 @@  discard block
 block discarded – undo
344 345
                 switch ($alpha) {
345 346
                     case '@':
346 347
                         $surns = array_filter($all_surnames, static fn (string $x): bool => $x === Individual::NOMEN_NESCIO, ARRAY_FILTER_USE_KEY);
348
+}
347 349
                         break;
348 350
                     case ',':
349 351
                         $surns = array_filter($all_surnames, static fn (string $x): bool => $x === '', ARRAY_FILTER_USE_KEY);
Please login to merge, or discard this patch.