Passed
Push — main ( bf0653...399add )
by Greg
07:14
created
app/Module/IndividualListModule.php 1 patch
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.