Completed
Push — snyk-fix-wsoyzf ( 4429e8 )
by Greg
08:42
created
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.
modules_v4/example-server-configuration.disable/module.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,8 @@
 block discarded – undo
11 11
 /**
12 12
  * An example module to modify PHP and database configuration.
13 13
  */
14
-return new class extends AbstractModule implements ModuleCustomInterface {
14
+return new class extends AbstractModule implements ModuleCustomInterface
15
+{
15 16
     use ModuleCustomTrait;
16 17
 
17 18
     /** @var ServerCheckService */
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
@@ -13,7 +13,8 @@
 block discarded – undo
13 13
 /**
14 14
  * Example module
15 15
  */
16
-return new class extends AbstractModule implements ModuleCustomInterface {
16
+return new class extends AbstractModule implements ModuleCustomInterface
17
+{
17 18
     use ModuleCustomTrait;
18 19
 
19 20
     /**
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
@@ -20,7 +20,8 @@
 block discarded – undo
20 20
  * Example theme.  Here we are extending an existing theme.
21 21
  * Instead, you could extend AbstractModule and implement ModuleThemeInterface directly.
22 22
  */
23
-return new class extends MinimalTheme implements ModuleCustomInterface {
23
+return new class extends MinimalTheme implements ModuleCustomInterface
24
+{
24 25
     use ModuleCustomTrait;
25 26
 
26 27
     /**
Please login to merge, or discard this patch.
app/Http/Middleware/ModuleMiddleware.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,8 @@
 block discarded – undo
55 55
         $pipeline = $handler;
56 56
 
57 57
         foreach ($middlewares as $middleware) {
58
-            $pipeline = new class($pipeline, $middleware) implements RequestHandlerInterface {
58
+            $pipeline = new class($pipeline, $middleware) implements RequestHandlerInterface
59
+            {
59 60
                 /** @var RequestHandlerInterface */
60 61
                 private $handler;
61 62
 
Please login to merge, or discard this patch.