Completed
Pull Request — master (#2156)
by Rico
08:04
created
app/Stats.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2579,7 +2579,7 @@
 block discarded – undo
2579 2579
     {
2580 2580
         /** @var ModuleBlockInterface $module */
2581 2581
         $module = Module::findByComponent('block', $this->tree, Auth::user())
2582
-            ->filter(function (ModuleInterface $module) use ($block): bool {
2582
+            ->filter(function (ModuleInterface $module) use ($block) : bool {
2583 2583
                 return $module->name() === $block && $module->name() !== 'html';
2584 2584
             })
2585 2585
             ->first();
Please login to merge, or discard this patch.
app/Statistics/Google/ChartIndividual.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
         $color_from = $color_from ?? $chart_color1;
50 50
         $color_to   = $color_to ?? $chart_color2;
51 51
 
52
-        $sizes    = explode('x', $size);
52
+        $sizes = explode('x', $size);
53 53
 
54 54
         if ($tot_indi === 0) {
55 55
             return '';
Please login to merge, or discard this patch.
app/Statistics/Google/ChartAge.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -135,7 +135,7 @@
 block discarded – undo
135 135
             $decades .= '|' . I18N::number($i);
136 136
         }
137 137
 
138
-        $chxl  .= '1:||' . I18N::translate('century') . '|2:' . $decades . '|3:||' . I18N::translate('Age') . '|';
138
+        $chxl .= '1:||' . I18N::translate('century') . '|2:' . $decades . '|3:||' . I18N::translate('Age') . '|';
139 139
         $title = I18N::translate('Average age related to death century');
140 140
 
141 141
         if (\count($rows) > 6 || mb_strlen($title) < 30) {
Please login to merge, or discard this patch.
app/Statistics/Repository/PlaceRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -231,7 +231,7 @@
 block discarded – undo
231 231
      */
232 232
     public function commonDeathPlacesList(): string
233 233
     {
234
-        $places = $this->queryFactPlaces('DEAT','INDI');
234
+        $places = $this->queryFactPlaces('DEAT', 'INDI');
235 235
         return $this->renderTop10($places);
236 236
     }
237 237
 
Please login to merge, or discard this patch.
app/Statistics/Repository/FamilyRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -479,7 +479,7 @@
 block discarded – undo
479 479
                         'age'    => $age,
480 480
                     ];
481 481
 
482
-                    $dist[]  = $fam->family;
482
+                    $dist[] = $fam->family;
483 483
                 }
484 484
             } elseif (!$one && $child1->canShow() && $child2->canShow()) {
485 485
                 $top10[] = [
Please login to merge, or discard this patch.