Passed
Push — snyk-fix-a7ffc9795c22fef729062... ( 82e92b...3b82ae )
by Greg
13:47 queued 08:15
created
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/Http/Controllers/ListController.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -233,7 +233,8 @@  discard block
 block discarded – undo
233 233
                     <li class="wt-initials-list-item d-flex">
234 234
                         <?php if ($count > 0) : ?>
235 235
                             <a href="<?= e(route('module', ['module' => $module, 'action' => $action, 'alpha' => $letter, 'ged' => $tree->name()])) ?>" class="wt-initial px-1<?= $letter === $alpha ? ' active' : '' ?> '" title="<?= I18N::number($count) ?>"><?= $this->surnameInitial((string) $letter) ?></a>
236
-                        <?php else : ?>
236
+                        <?php else {
237
+    : ?>
237 238
                             <span class="wt-initial px-1 text-muted"><?= $this->surnameInitial((string) $letter) ?></span>
238 239
 
239 240
                         <?php endif ?>
@@ -287,6 +288,7 @@  discard block
 block discarded – undo
287 288
 
288 289
             if ($show === 'indi' || $show === 'surn') {
289 290
                 $surns = $this->individual_list_service->surnames($surname, $alpha, $show_marnm === 'yes', $families, WT_LOCALE, I18N::collation());
291
+}
290 292
                 if ($show === 'surn') {
291 293
                     // Show the surname list
292 294
                     switch ($tree->getPreference('SURNAME_LIST_STYLE')) {
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.
resources/lang/en-US/messages.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1 1
 <?php return array (
2
-  '%H:%i:%s' => '%g:%i:%s %a',
3
-  '%j %F %Y' => '%F %j, %Y',
2
+    '%H:%i:%s' => '%g:%i:%s %a',
3
+    '%j %F %Y' => '%F %j, %Y',
4 4
 );
Please login to merge, or discard this patch.
modules_v4/example-server-configuration.disable/module.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,8 @@
 block discarded – undo
12 12
  * An example module to modify PHP and database configuration.
13 13
  */
14 14
 
15
-return new class extends AbstractModule implements ModuleCustomInterface {
15
+return new class extends AbstractModule implements ModuleCustomInterface
16
+{
16 17
     use ModuleCustomTrait;
17 18
 
18 19
     /** @var ServerCheckService */
Please login to merge, or discard this patch.
modules_v4/example-theme.disable/module.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,8 @@
 block discarded – undo
12 12
  * Instead, you could extend AbstractModule and implement ModuleThemeInterface directly.
13 13
  */
14 14
 
15
-return new class extends MinimalTheme implements ModuleCustomInterface {
15
+return new class extends MinimalTheme implements ModuleCustomInterface
16
+{
16 17
     use ModuleCustomTrait;
17 18
 
18 19
     /**
Please login to merge, or discard this patch.
modules_v4/example.disable/module.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,8 @@
 block discarded – undo
14 14
  * Example module
15 15
  */
16 16
 
17
-return new class extends AbstractModule implements ModuleCustomInterface {
17
+return new class extends AbstractModule implements ModuleCustomInterface
18
+{
18 19
     use ModuleCustomTrait;
19 20
 
20 21
     /**
Please login to merge, or discard this patch.