Passed
Push — scrutinizer-patch-1 ( c7d376 )
by
unknown
13:36 queued 05:35
created
app/Functions/FunctionsPrint.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -345,10 +345,10 @@
 block discarded – undo
345 345
         }
346 346
         // print gedcom ages
347 347
         foreach ([
348
-                     I18N::translate('Age')     => $fact_age,
349
-                     I18N::translate('Husband') => $husb_age,
350
-                     I18N::translate('Wife')    => $wife_age,
351
-                 ] as $label => $age) {
348
+                        I18N::translate('Age')     => $fact_age,
349
+                        I18N::translate('Husband') => $husb_age,
350
+                        I18N::translate('Wife')    => $wife_age,
351
+                    ] as $label => $age) {
352 352
             if ($age != '') {
353 353
                 $html .= ' <span class="label">' . $label . ':</span> <span class="age">' . FunctionsDate::getAgeAtEvent($age) . '</span>';
354 354
             }
Please login to merge, or discard this patch.
app/MediaFile.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -224,10 +224,10 @@
 block discarded – undo
224 224
             $src    = $this->imageUrl($width, $height, $fit);
225 225
             $srcset = [];
226 226
             foreach ([
227
-                         2,
228
-                         3,
229
-                         4,
230
-                     ] as $x) {
227
+                            2,
228
+                            3,
229
+                            4,
230
+                        ] as $x) {
231 231
                 $srcset[] = $this->imageUrl($width * $x, $height * $x, $fit) . ' ' . $x . 'x';
232 232
             }
233 233
         }
Please login to merge, or discard this patch.
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/Services/CalendarService.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -327,9 +327,9 @@
 block discarded – undo
327 327
 
328 328
             // Now fetch these anniversaries
329 329
             foreach ([
330
-                         'INDI' => $ind_sql . $where . $order_by,
331
-                         'FAM'  => $fam_sql . $where . $order_by,
332
-                     ] as $type => $sql) {
330
+                            'INDI' => $ind_sql . $where . $order_by,
331
+                            'FAM'  => $fam_sql . $where . $order_by,
332
+                        ] as $type => $sql) {
333 333
                 $rows = Database::prepare($sql)->execute($args)->fetchAll();
334 334
                 foreach ($rows as $row) {
335 335
                     if ($type === 'INDI') {
Please login to merge, or discard this patch.
app/Stats.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1016,7 +1016,7 @@  discard block
 block discarded – undo
1016 1016
             I18N::translate('Females') . ' - ' . $per_f . '|' .
1017 1017
             I18N::translate('Males') . ' - ' . $per_m;
1018 1018
         $chart_title = I18N::translate('Males') . ' - ' . $per_m . I18N::$list_separator .
1019
-                   I18N::translate('Females') . ' - ' . $per_f;
1019
+                    I18N::translate('Females') . ' - ' . $per_f;
1020 1020
 
1021 1021
         return "<img src=\"https://chart.googleapis.com/chart?cht=p3&amp;chd=e:{$chd}&amp;chs={$size}&amp;chco={$color_female},{$color_male}&amp;chf=bg,s,ffffff00&amp;chl={$chl}\" width=\"{$sizes[0]}\" height=\"{$sizes[1]}\" alt=\"" . $chart_title . '" title="' . $chart_title . '" />';
1022 1022
     }
@@ -1132,7 +1132,7 @@  discard block
 block discarded – undo
1132 1132
             I18N::translate('Living') . ' - ' . $per_l . '|' .
1133 1133
             I18N::translate('Dead') . ' - ' . $per_d . '|';
1134 1134
         $chart_title = I18N::translate('Living') . ' - ' . $per_l . I18N::$list_separator .
1135
-                   I18N::translate('Dead') . ' - ' . $per_d;
1135
+                    I18N::translate('Dead') . ' - ' . $per_d;
1136 1136
 
1137 1137
         return "<img src=\"https://chart.googleapis.com/chart?cht=p3&amp;chd=e:{$chd}&amp;chs={$size}&amp;chco={$color_living},{$color_dead}&amp;chf=bg,s,ffffff00&amp;chl={$chl}\" width=\"{$sizes[0]}\" height=\"{$sizes[1]}\" alt=\"" . $chart_title . '" title="' . $chart_title . '" />';
1138 1138
     }
Please login to merge, or discard this patch.
app/Http/Controllers/IndividualController.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -378,8 +378,8 @@
 block discarded – undo
378 378
             $edit_links = FontAwesome::linkIcon('edit', I18N::translate('Edit the gender'), [
379 379
                 'class' => 'btn btn-link',
380 380
                 'href'  => route('edit-fact', ['xref'    => $individual->xref(),
381
-                                               'fact_id' => $fact->id(),
382
-                                               'ged'     => $individual->tree()->name(),
381
+                                                'fact_id' => $fact->id(),
382
+                                                'ged'     => $individual->tree()->name(),
383 383
                 ]),
384 384
             ]);
385 385
         } else {
Please login to merge, or discard this patch.
app/Http/Controllers/DescendantsChartController.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -190,8 +190,8 @@  discard block
 block discarded – undo
190 190
         foreach ($person->getChildFamilies() as $cfamily) {
191 191
             foreach ($cfamily->getSpouses() as $parent) {
192 192
                 echo FontAwesome::linkIcon('arrow-up', I18N::translate('Start at parents'), ['href' => route('descendants', ['ged'         => $parent->tree()->name(),
193
-                                                                                                                             'xref'        => $parent->xref(),
194
-                                                                                                                             'generations' => $generations,
193
+                                                                                                                                'xref'        => $parent->xref(),
194
+                                                                                                                                'generations' => $generations,
195 195
                 ]),
196 196
                 ]);
197 197
                 // only show the arrow for one of the parents
@@ -273,8 +273,8 @@  discard block
 block discarded – undo
273 273
             foreach ($spouse->getChildFamilies() as $cfamily) {
274 274
                 foreach ($cfamily->getSpouses() as $parent) {
275 275
                     echo FontAwesome::linkIcon('arrow-up', I18N::translate('Start at parents'), ['href' => route('descendants', ['ged'         => $parent->tree()->name(),
276
-                                                                                                                                 'xref'        => $parent->xref(),
277
-                                                                                                                                 'generations' => $generations,
276
+                                                                                                                                    'xref'        => $parent->xref(),
277
+                                                                                                                                    'generations' => $generations,
278 278
                     ]),
279 279
                     ]);
280 280
                     // only show the arrow for one of the parents
Please login to merge, or discard this patch.
app/Module/DescendancyChartModule.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@
 block discarded – undo
73 73
         return new Menu(
74 74
             $this->getTitle(),
75 75
             route('descendants', ['ged'  => $individual->tree()->name(),
76
-                                  'xref' => $individual->xref(),
76
+                                    'xref' => $individual->xref(),
77 77
             ]),
78 78
             'menu-chart-descendants',
79 79
             ['rel' => 'nofollow']
Please login to merge, or discard this patch.
app/Module/FamilyBookChartModule.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@
 block discarded – undo
73 73
         return new Menu(
74 74
             $this->getTitle(),
75 75
             route('family-book', ['ged'  => $individual->tree()->name(),
76
-                                  'xref' => $individual->xref(),
76
+                                    'xref' => $individual->xref(),
77 77
             ]),
78 78
             'menu-chart-familybook',
79 79
             ['rel' => 'nofollow']
Please login to merge, or discard this patch.