Passed
Push — master ( a2ae7a...86787b )
by Greg
06:02
created
app/Functions/FunctionsRtl.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
183 183
                         $currentLen        = $endPos + 2;
184 184
                         $directive         = substr($workingText, 0, $currentLen);
185 185
                         $workingText       = substr($workingText, $currentLen);
186
-                        $result            .= self::$waitingText . $directive;
186
+                        $result .= self::$waitingText . $directive;
187 187
                         self::$waitingText = '';
188 188
                         break;
189 189
                     }
@@ -1125,7 +1125,7 @@  discard block
 block discarded – undo
1125 1125
 
1126 1126
             // We're done: finish the span
1127 1127
             $textSpan = self::starredName($textSpan, 'RTL'); // Wrap starred name in <u> and </u> tags
1128
-            $result   .= $textSpan . self::END_RTL;
1128
+            $result .= $textSpan . self::END_RTL;
1129 1129
         }
1130 1130
 
1131 1131
         if (self::$currentState !== 'LTR' && self::$currentState !== 'RTL') {
Please login to merge, or discard this patch.
app/Module/TimelineChartModule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
         '_TODO',
65 65
         'CHAN',
66 66
     ];
67
-    protected const BHEIGHT   = 30;
67
+    protected const BHEIGHT = 30;
68 68
 
69 69
     // Box height
70 70
 
Please login to merge, or discard this patch.
app/Http/RequestHandlers/HelpText.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -299,6 +299,6 @@
 block discarded – undo
299 299
      */
300 300
     private function dmyOrder(): string
301 301
     {
302
-        return preg_replace('/[^DMY]/', '', str_replace(['J', 'F',], ['D', 'M',], I18N::dateFormat()));
302
+        return preg_replace('/[^DMY]/', '', str_replace(['J', 'F', ], ['D', 'M', ], I18N::dateFormat()));
303 303
     }
304 304
 }
Please login to merge, or discard this patch.
app/Http/Controllers/MediaFileController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -188,7 +188,7 @@
 block discarded – undo
188 188
             $params['tree'] = $media_file->media()->tree()->name();
189 189
             $this->glideSignature()->validateRequest('', $params);
190 190
 
191
-            $path = $media_file->media()->tree()->getPreference('MEDIA_DIRECTORY', 'media/') .  $media_file->filename();
191
+            $path = $media_file->media()->tree()->getPreference('MEDIA_DIRECTORY', 'media/') . $media_file->filename();
192 192
             $folder = dirname($path);
193 193
 
194 194
             $cache_path           = 'thumbnail-cache/' . md5($folder);
Please login to merge, or discard this patch.
app/Http/Middleware/Router.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
             $url_route = $params['route'] ?? '/';
72 72
             $uri       = $uri->withPath($url_route);
73 73
             unset($params['route']);
74
-            $uri     = $uri->withQuery(http_build_query($params, '', '&', PHP_QUERY_RFC3986));
74
+            $uri = $uri->withQuery(http_build_query($params, '', '&', PHP_QUERY_RFC3986));
75 75
             $temp_request = $request->withUri($uri)->withQueryParams($params);
76 76
         } else {
77 77
             $temp_request = $request;
Please login to merge, or discard this patch.
app/Services/TreeService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -124,7 +124,7 @@
 block discarded – undo
124 124
      */
125 125
     public function findByName($name): ?Tree
126 126
     {
127
-        return $this->all()->first(static function (Tree $tree) use ($name): bool {
127
+        return $this->all()->first(static function (Tree $tree) use ($name) : bool {
128 128
             return $tree->name() === $name;
129 129
         });
130 130
     }
Please login to merge, or discard this patch.
app/Http/Controllers/AdminTreesController.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -370,10 +370,10 @@
 block discarded – undo
370 370
     }
371 371
 
372 372
     /**
373
-      * @param ServerRequestInterface $request
374
-      *
375
-      * @return ResponseInterface
376
-      */
373
+     * @param ServerRequestInterface $request
374
+     *
375
+     * @return ResponseInterface
376
+     */
377 377
     public function duplicates(ServerRequestInterface $request): ResponseInterface
378 378
     {
379 379
         $tree       = $request->getAttribute('tree');
Please login to merge, or discard this patch.
app/Http/Controllers/ListController.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -166,7 +166,7 @@
 block discarded – undo
166 166
                     'tree'      => $tree->name(),
167 167
                     'show_all' => 'yes',
168 168
                 ];
169
-                $show    = $request->getQueryParams()['show'] ?? 'surn';
169
+                $show = $request->getQueryParams()['show'] ?? 'surn';
170 170
             }
171 171
         } elseif ($surname) {
172 172
             $alpha    = $this->localization_service->initialLetter($surname); // so we can highlight the initial letter
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -240,7 +240,8 @@  discard block
 block discarded – undo
240 240
                     <li class="wt-initials-list-item d-flex">
241 241
                         <?php if ($count > 0) : ?>
242 242
                             <a href="<?= e(route('module', ['module' => $module, 'action' => $action, 'alpha' => $letter, 'tree' => $tree->name()])) ?>" class="wt-initial px-1<?= $letter === $alpha ? ' active' : '' ?> '" title="<?= I18N::number($count) ?>"><?= $this->surnameInitial((string) $letter) ?></a>
243
-                        <?php else : ?>
243
+                        <?php else {
244
+    : ?>
244 245
                             <span class="wt-initial px-1 text-muted"><?= $this->surnameInitial((string) $letter) ?></span>
245 246
 
246 247
                         <?php endif ?>
@@ -294,6 +295,7 @@  discard block
 block discarded – undo
294 295
 
295 296
             if ($show === 'indi' || $show === 'surn') {
296 297
                 $surns = $this->individual_list_service->surnames($surname, $alpha, $show_marnm === 'yes', $families, WT_LOCALE, I18N::collation());
298
+}
297 299
                 if ($show === 'surn') {
298 300
                     // Show the surname list
299 301
                     switch ($tree->getPreference('SURNAME_LIST_STYLE')) {
Please login to merge, or discard this patch.
app/Http/Controllers/EditIndividualController.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -37,12 +37,12 @@
 block discarded – undo
37 37
 class EditIndividualController extends AbstractEditController
38 38
 {
39 39
     /**
40
-      * Add a child to an existing individual (creating a one-parent family).
41
-      *
42
-      * @param ServerRequestInterface $request
43
-      *
44
-      * @return ResponseInterface
45
-      */
40
+     * Add a child to an existing individual (creating a one-parent family).
41
+     *
42
+     * @param ServerRequestInterface $request
43
+     *
44
+     * @return ResponseInterface
45
+     */
46 46
     public function addChild(ServerRequestInterface $request): ResponseInterface
47 47
     {
48 48
         $tree       = $request->getAttribute('tree');
Please login to merge, or discard this patch.