Passed
Push — main ( 00ef1d...c9eec6 )
by Greg
06:51
created
app/Module/AbstractIndividualListModule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -546,7 +546,7 @@
 block discarded – undo
546 546
             ->groupBy([DB::binaryColumn('n_givn')]);
547 547
 
548 548
         foreach ($query->get() as $row) {
549
-            $initial            = I18N::strtoupper(I18N::language()->initialLetter($row->n_givn));
549
+            $initial = I18N::strtoupper(I18N::language()->initialLetter($row->n_givn));
550 550
             $initials[$initial] ??= 0;
551 551
             $initials[$initial] += (int) $row->count;
552 552
         }
Please login to merge, or discard this patch.