Passed
Push — dbal ( 545eb7...a65111 )
by Greg
13:50 queued 06:40
created
app/Contracts/SurnameTraditionFactoryInterface.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
     public const POLISH      = 'polish';
44 44
     public const LITHUANIAN  = 'lithuanian';
45 45
     public const ICELANDIC   = 'icelandic';
46
-    public const DEFAULT     = '';
46
+    public const default     = '';
47 47
 
48 48
     /**
49 49
      * A list of supported surname traditions and their names.
Please login to merge, or discard this patch.
app/Factories/SurnameTraditionFactory.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
         $this->register(self::POLISH, new PolishSurnameTradition());
53 53
         $this->register(self::LITHUANIAN, new LithuanianSurnameTradition());
54 54
         $this->register(self::ICELANDIC, new IcelandicSurnameTradition());
55
-        $this->register(self::DEFAULT, new DefaultSurnameTradition());
55
+        $this->register(self::default, new DefaultSurnameTradition());
56 56
     }
57 57
 
58 58
     /**
Please login to merge, or discard this patch.
app/Factories/MarkdownFactory.php 2 patches
Upper-Lower-Casing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -50,13 +50,13 @@  discard block
 block discarded – undo
50 50
 class MarkdownFactory implements MarkdownFactoryInterface
51 51
 {
52 52
     // Commonmark uses the self-closing form of this tag, so we do the same for consistency.
53
-    public const BREAK = '<br />';
53
+    public const break = '<br />';
54 54
 
55 55
     protected const CONFIG_AUTOLINK = [
56 56
         'allow_unsafe_links' => false,
57 57
         'html_input'         => HtmlFilter::ESCAPE,
58 58
         'renderer'           => [
59
-            'soft_break' => self::BREAK,
59
+            'soft_break' => self::break,
60 60
         ],
61 61
     ];
62 62
 
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
         'allow_unsafe_links' => false,
65 65
         'html_input'         => HtmlFilter::ESCAPE,
66 66
         'renderer'           => [
67
-            'soft_break' => self::BREAK,
67
+            'soft_break' => self::break,
68 68
         ],
69 69
         'table'              => [
70 70
             'wrap' => [
Please login to merge, or discard this 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.
app/Note.php 1 patch
Upper-Lower-Casing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -114,24 +114,24 @@
 block discarded – undo
114 114
     public static function firstLineOfTextFromHtml(string $html): string
115 115
     {
116 116
         $html = strtr($html, [
117
-            '</blockquote>' => MarkdownFactory::BREAK,
118
-            '</h1>'         => MarkdownFactory::BREAK,
119
-            '</h2>'         => MarkdownFactory::BREAK,
120
-            '</h3>'         => MarkdownFactory::BREAK,
121
-            '</h4>'         => MarkdownFactory::BREAK,
122
-            '</h5>'         => MarkdownFactory::BREAK,
123
-            '</h6>'         => MarkdownFactory::BREAK,
124
-            '</li>'         => MarkdownFactory::BREAK,
125
-            '</p>'          => MarkdownFactory::BREAK,
126
-            '</pre>'        => MarkdownFactory::BREAK,
117
+            '</blockquote>' => MarkdownFactory::break,
118
+            '</h1>'         => MarkdownFactory::break,
119
+            '</h2>'         => MarkdownFactory::break,
120
+            '</h3>'         => MarkdownFactory::break,
121
+            '</h4>'         => MarkdownFactory::break,
122
+            '</h5>'         => MarkdownFactory::break,
123
+            '</h6>'         => MarkdownFactory::break,
124
+            '</li>'         => MarkdownFactory::break,
125
+            '</p>'          => MarkdownFactory::break,
126
+            '</pre>'        => MarkdownFactory::break,
127 127
             '</td>'         => ' ',
128 128
             '</th>'         => ' ',
129
-            '<hr>'          => MarkdownFactory::BREAK,
129
+            '<hr>'          => MarkdownFactory::break,
130 130
         ]);
131 131
 
132 132
         $html = strip_tags($html, ['br']);
133 133
 
134
-        [$first] = explode(MarkdownFactory::BREAK, $html, 2);
134
+        [$first] = explode(MarkdownFactory::break, $html, 2);
135 135
 
136 136
         return htmlspecialchars_decode($first, ENT_QUOTES);
137 137
     }
Please login to merge, or discard this patch.
app/Module/IndividualFactsTabModule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -126,7 +126,7 @@
 block discarded – undo
126 126
             ->flatten();
127 127
 
128 128
         // Don't show family meta-data tags
129
-        $exclude_facts  = new Collection(['FAM:CHAN', 'FAM:_UID']);
129
+        $exclude_facts = new Collection(['FAM:CHAN', 'FAM:_UID']);
130 130
         // Don't show tags that are shown in tabs or sidebars
131 131
         $exclude_facts = $exclude_facts->merge($sidebar_facts)->merge($tab_facts);
132 132
 
Please login to merge, or discard this patch.
app/Report/ReportParserGenerate.php 2 patches
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1090,7 +1090,7 @@
 block discarded – undo
1090 1090
                     } else {
1091 1091
                         $value = strip_tags(Registry::markdownFactory()->autolink($value, $this->tree), ['br']);
1092 1092
                     }
1093
-                    $value = strtr($value, [MarkdownFactory::BREAK => ' ']);
1093
+                    $value = strtr($value, [MarkdownFactory::break => ' ']);
1094 1094
                 }
1095 1095
 
1096 1096
                 if (!empty($attrs['truncate'])) {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1899,7 +1899,7 @@
 block discarded – undo
1899 1899
                             ->groupBy(['xref']);
1900 1900
                     })
1901 1901
                     ->get()
1902
-                    ->map(fn (object $row): GedcomRecord|null => Registry::gedcomRecordFactory()->make($row->xref, $this->tree, $row->new_gedcom ?: $row->old_gedcom))
1902
+                    ->map(fn (object $row): GedcomRecord | null => Registry::gedcomRecordFactory()->make($row->xref, $this->tree, $row->new_gedcom ?: $row->old_gedcom))
1903 1903
                     ->filter()
1904 1904
                     ->all();
1905 1905
                 break;
Please login to merge, or discard this patch.
resources/lang/en-US/messages.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -3,6 +3,6 @@
 block discarded – undo
3 3
 declare(strict_types=1);
4 4
 
5 5
 return array (
6
-  '%H:%i:%s' => '%g:%i:%s %a',
7
-  '%j %F %Y' => '%F %j, %Y',
6
+    '%H:%i:%s' => '%g:%i:%s %a',
7
+    '%j %F %Y' => '%F %j, %Y',
8 8
 );
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 
3 3
 declare(strict_types=1);
4 4
 
5
-return array (
5
+return array(
6 6
   '%H:%i:%s' => '%g:%i:%s %a',
7 7
   '%j %F %Y' => '%F %j, %Y',
8 8
 );
Please login to merge, or discard this patch.
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, '&nbsp;')) {
325 325
                                     // Spaces following this left parenthesis inherit the following directionality too
326 326
                                     self::$waitingText .= '&nbsp;';
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.