Completed
Push — snyk-fix-wsoyzf ( 4429e8 )
by Greg
08:42
created
app/Http/Controllers/HomePageController.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -840,9 +840,9 @@
 block discarded – undo
840 840
         }
841 841
 
842 842
         foreach ([
843
-                     'main' => $main_blocks,
844
-                     'side' => $side_blocks,
845
-                 ] as $location => $updated_blocks) {
843
+                        'main' => $main_blocks,
844
+                        'side' => $side_blocks,
845
+                    ] as $location => $updated_blocks) {
846 846
             foreach ($updated_blocks as $block_order => $block_id) {
847 847
                 if (is_numeric($block_id)) {
848 848
                     // Updated block
Please login to merge, or discard this patch.
app/Statistics/Google/ChartMarriageAge.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -102,9 +102,9 @@
 block discarded – undo
102 102
             ->groupBy(['century', 'sex']);
103 103
 
104 104
         return $male->unionAll($female)
105
-           ->orderBy('century')
106
-           ->get()
107
-           ->all();
105
+            ->orderBy('century')
106
+            ->get()
107
+            ->all();
108 108
     }
109 109
 
110 110
     /**
Please login to merge, or discard this patch.
app/Functions/FunctionsPrint.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -322,10 +322,10 @@
 block discarded – undo
322 322
         }
323 323
         // print gedcom ages
324 324
         foreach ([
325
-                     I18N::translate('Age')     => $fact_age,
326
-                     I18N::translate('Husband') => $husb_age,
327
-                     I18N::translate('Wife')    => $wife_age,
328
-                 ] as $label => $age) {
325
+                        I18N::translate('Age')     => $fact_age,
326
+                        I18N::translate('Husband') => $husb_age,
327
+                        I18N::translate('Wife')    => $wife_age,
328
+                    ] as $label => $age) {
329 329
             if ($age !== '') {
330 330
                 $html .= ' <span class="label">' . $label . ':</span> <span class="age">' . FunctionsDate::getAgeAtEvent($age) . '</span>';
331 331
             }
Please login to merge, or discard this patch.