Passed
Push — dbal ( c6a380...004b3e )
by Greg
22:29 queued 06:40
created
app/Report/RightToLeftSupport.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -199,7 +199,7 @@  discard block
 block discarded – undo
199 199
                         $currentLen        = $endPos + 2;
200 200
                         $directive         = substr($workingText, 0, $currentLen);
201 201
                         $workingText       = substr($workingText, $currentLen);
202
-                        $result            .= self::$waitingText . $directive;
202
+                        $result .= self::$waitingText . $directive;
203 203
                         self::$waitingText = '';
204 204
                         break;
205 205
                     }
@@ -308,7 +308,7 @@  discard block
 block discarded – undo
308 308
                             break;
309 309
                         }
310 310
                         self::$waitingText .= $currentLetter;
311
-                        $workingText       = substr($workingText, $currentLen);
311
+                        $workingText = substr($workingText, $currentLen);
312 312
                         if ($openParIndex !== false) {
313 313
                             // Opening parentheses always inherit the following directionality
314 314
                             while (true) {
@@ -318,13 +318,13 @@  discard block
 block discarded – undo
318 318
                                 if (str_starts_with($workingText, ' ')) {
319 319
                                     // Spaces following this left parenthesis inherit the following directionality too
320 320
                                     self::$waitingText .= ' ';
321
-                                    $workingText       = substr($workingText, 1);
321
+                                    $workingText = substr($workingText, 1);
322 322
                                     continue;
323 323
                                 }
324 324
                                 if (str_starts_with($workingText, ' ')) {
325 325
                                     // Spaces following this left parenthesis inherit the following directionality too
326 326
                                     self::$waitingText .= ' ';
327
-                                    $workingText       = substr($workingText, 6);
327
+                                    $workingText = substr($workingText, 6);
328 328
                                     continue;
329 329
                                 }
330 330
                                 break;
@@ -341,7 +341,7 @@  discard block
 block discarded – undo
341 341
                         // Exceptions to this rule will be handled later during final clean-up.
342 342
                         //
343 343
                         if (self::$currentState !== '') {
344
-                            $result            .= self::$waitingText;
344
+                            $result .= self::$waitingText;
345 345
                             self::$waitingText = '';
346 346
                         }
347 347
                         break 2; // double break because we're waiting for more information
@@ -470,7 +470,7 @@  discard block
 block discarded – undo
470 470
                 }
471 471
                 if (substr($result . "\n", 0, self::LENGTH_START) !== self::START_LTR && substr($result . "\n", 0, self::LENGTH_START) !== self::START_RTL) {
472 472
                     $leadingText .= substr($result, 0, 1);
473
-                    $result      = substr($result, 1);
473
+                    $result = substr($result, 1);
474 474
                     continue;
475 475
                 }
476 476
                 $result = substr($result, 0, self::LENGTH_START) . $leadingText . substr($result, self::LENGTH_START);
@@ -612,11 +612,11 @@  discard block
 block discarded – undo
612 612
     private static function breakCurrentSpan(string &$result): void
613 613
     {
614 614
         // Interrupt the current span, insert that <br>, and then continue the current span
615
-        $result            .= self::$waitingText;
615
+        $result .= self::$waitingText;
616 616
         self::$waitingText = '';
617 617
 
618 618
         $breakString = '<' . self::$currentState . 'br>';
619
-        $result      .= $breakString;
619
+        $result .= $breakString;
620 620
     }
621 621
 
622 622
     /**
@@ -673,7 +673,7 @@  discard block
 block discarded – undo
673 673
                 break;
674 674
             } // No more numeric strings
675 675
 
676
-            $tempResult    .= substr($textSpan, 0, $posLRE + 3); // Copy everything preceding the numeric string
676
+            $tempResult .= substr($textSpan, 0, $posLRE + 3); // Copy everything preceding the numeric string
677 677
             $numericString = substr($textSpan, $posLRE + 3, $posPDF - $posLRE); // Separate the entire numeric string
678 678
             $textSpan      = substr($textSpan, $posPDF + 3);
679 679
             $posColon      = strpos($numericString, ':');
@@ -1140,7 +1140,7 @@  discard block
 block discarded – undo
1140 1140
 
1141 1141
             // We're done: finish the span
1142 1142
             $textSpan = self::starredName($textSpan, 'RTL'); // Wrap starred name in <u> and </u> tags
1143
-            $result   .= $textSpan . self::END_RTL;
1143
+            $result .= $textSpan . self::END_RTL;
1144 1144
         }
1145 1145
 
1146 1146
         if (self::$currentState !== 'LTR' && self::$currentState !== 'RTL') {
Please login to merge, or discard this patch.
app/Contracts/ResponseFactoryInterface.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
      *
54 54
      * @return ResponseInterface
55 55
      */
56
-    public function redirectUrl(UriInterface|string $url, int $code = StatusCodeInterface::STATUS_FOUND): ResponseInterface;
56
+    public function redirectUrl(UriInterface | string $url, int $code = StatusCodeInterface::STATUS_FOUND): ResponseInterface;
57 57
 
58 58
     /**
59 59
      * @param string|array<mixed>|object $content
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
      *
63 63
      * @return ResponseInterface
64 64
      */
65
-    public function response(string|array|object $content = '', int $code = StatusCodeInterface::STATUS_OK, array $headers = []): ResponseInterface;
65
+    public function response(string | array | object $content = '', int $code = StatusCodeInterface::STATUS_OK, array $headers = []): ResponseInterface;
66 66
 
67 67
     /**
68 68
      * Create and render a view, and embed it in an HTML page.
Please login to merge, or discard this patch.
app/Factories/ResponseFactory.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
      *
86 86
      * @return ResponseInterface
87 87
      */
88
-    public function redirectUrl(UriInterface|string $url, int $code = StatusCodeInterface::STATUS_FOUND): ResponseInterface
88
+    public function redirectUrl(UriInterface | string $url, int $code = StatusCodeInterface::STATUS_FOUND): ResponseInterface
89 89
     {
90 90
         return $this->response_factory
91 91
             ->createResponse($code)
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
      *
100 100
      * @return ResponseInterface
101 101
      */
102
-    public function response(string|array|object $content = '', int $code = StatusCodeInterface::STATUS_OK, array $headers = []): ResponseInterface
102
+    public function response(string | array | object $content = '', int $code = StatusCodeInterface::STATUS_OK, array $headers = []): ResponseInterface
103 103
     {
104 104
         if ($content === '' && $code === StatusCodeInterface::STATUS_OK) {
105 105
             $code = StatusCodeInterface::STATUS_NO_CONTENT;
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
         if (is_string($content)) {
109 109
             $headers['content-type'] ??= 'text/html; charset=UTF-8';
110 110
         } else {
111
-            $content                 = json_encode($content, JSON_THROW_ON_ERROR | JSON_UNESCAPED_UNICODE);
111
+            $content = json_encode($content, JSON_THROW_ON_ERROR | JSON_UNESCAPED_UNICODE);
112 112
             $headers['content-type'] ??= 'application/json';
113 113
         }
114 114
 
Please login to merge, or discard this patch.
app/Services/GedcomEditService.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
                 }
158 158
             }
159 159
 
160
-            if ($values[$i] !== '' || $children_with_values  && !$element instanceof AbstractXrefElement) {
160
+            if ($values[$i] !== '' || $children_with_values && !$element instanceof AbstractXrefElement) {
161 161
                 if ($values[$i] === '') {
162 162
                     $gedcom_lines[] = $levels[$i] . ' ' . $tags[$i];
163 163
                 } else {
@@ -231,7 +231,7 @@  discard block
 block discarded – undo
231 231
      *
232 232
      * @return array<string>
233 233
      */
234
-    public function factsToAdd(Family|Individual $record, bool $include_hidden): array
234
+    public function factsToAdd(Family | Individual $record, bool $include_hidden): array
235 235
     {
236 236
         $subtags = Registry::elementFactory()->make($record->tag())->subtags();
237 237
 
Please login to merge, or discard this patch.
app/Helpers/functions.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -114,7 +114,7 @@
 block discarded – undo
114 114
  *
115 115
  * @return ResponseInterface
116 116
  */
117
-function response(array|object|string $content = '', int $code = StatusCodeInterface::STATUS_OK, array $headers = []): ResponseInterface
117
+function response(array | object | string $content = '', int $code = StatusCodeInterface::STATUS_OK, array $headers = []): ResponseInterface
118 118
 {
119 119
     return Registry::responseFactory()->response($content, $code, $headers);
120 120
 }
Please login to merge, or discard this patch.
app/Services/UpgradeService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -301,7 +301,7 @@
 block discarded – undo
301 301
     {
302 302
         $latest_version = $this->fetchLatestVersion(false);
303 303
 
304
-        [, , $url] = explode('|', $latest_version . '||');
304
+        [,, $url] = explode('|', $latest_version . '||');
305 305
 
306 306
         return $url;
307 307
     }
Please login to merge, or discard this patch.
app/DB/Query.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -107,7 +107,7 @@
 block discarded – undo
107 107
         return (object) [];
108 108
     }
109 109
 
110
-    public function first(): string|int|float|null
110
+    public function first(): string | int | float | null
111 111
     {
112 112
         return 0;
113 113
     }
Please login to merge, or discard this patch.
app/SessionDatabaseHandler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -114,7 +114,7 @@
 block discarded – undo
114 114
 
115 115
             // Only update session once a minute to reduce contention on the session table.
116 116
             if ($now->subtractMinutes(1)->timestamp() > Registry::timestampFactory()->fromString($this->row->session_time)->timestamp()) {
117
-                $updates['session_time'] =  $now->toDateTimeString();
117
+                $updates['session_time'] = $now->toDateTimeString();
118 118
             }
119 119
 
120 120
             if ($updates !== []) {
Please login to merge, or discard this patch.
app/Factories/MarkdownFactory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
      *
84 84
      * @return string
85 85
      */
86
-    public function autolink(string $markdown, Tree|null $tree = null): string
86
+    public function autolink(string $markdown, Tree | null $tree = null): string
87 87
     {
88 88
         // Create a minimal commonmark processor - just add support for auto-links.
89 89
         $environment = new Environment(static::CONFIG_AUTOLINK);
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
      *
118 118
      * @return string
119 119
      */
120
-    public function markdown(string $markdown, Tree|null $tree = null): string
120
+    public function markdown(string $markdown, Tree | null $tree = null): string
121 121
     {
122 122
         $environment = new Environment(static::CONFIG_MARKDOWN);
123 123
         $environment->addExtension(new CommonMarkCoreExtension());
Please login to merge, or discard this patch.