Passed
Pull Request — main (#5055)
by
unknown
07:15
created
app/Report/ReportParserGenerate.php 3 patches
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1138,7 +1138,7 @@
 block discarded – undo
1138 1138
                         $value = str_replace("\n", "<br>", $value);
1139 1139
                         //$value = strip_tags(Registry::markdownFactory()->autolink($value, $this->tree), ['br']);
1140 1140
                     }
1141
-                    $value = strtr($value, [MarkdownFactory::BREAK => ' ']);
1141
+                    $value = strtr($value, [MarkdownFactory::break => ' ']);
1142 1142
                 }
1143 1143
 
1144 1144
                 if (isset($attrs['lcfirst'])) {
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1021,7 +1021,7 @@  discard block
 block discarded – undo
1021 1021
                 $this->current_element->addText(I18N::translate('Private'));
1022 1022
             } elseif ($nameselect == 'latest') {
1023 1023
                 $tmp = $record->getAllNames();
1024
-                $name  = strip_tags($tmp[count($tmp) - 1]['full']);
1024
+                $name = strip_tags($tmp[count($tmp) - 1]['full']);
1025 1025
                 $this->current_element->addText(trim($name));
1026 1026
             } elseif ($nameselect == 'combined') {
1027 1027
                 $tmp = $record->getAllNames();
@@ -1102,7 +1102,7 @@  discard block
 block discarded – undo
1102 1102
                 $value = $this->getGedcomValue($tag, $level, $this->gedrec);
1103 1103
                 switch (end($tags)) {
1104 1104
                     case 'DATE':
1105
-                        $tmp   = new Date($value);
1105
+                        $tmp = new Date($value);
1106 1106
                         $dfmt = "%j %F %Y";
1107 1107
                         if (!empty($attrs['truncate'])) {
1108 1108
                             if ($attrs['truncate'] === "d") {
@@ -1142,7 +1142,7 @@  discard block
 block discarded – undo
1142 1142
 
1143 1143
                 if (isset($attrs['lcfirst'])) {
1144 1144
                     $value = lcfirst($value);
1145
-                    $value = str_replace(["Å","Ä","Ö"], ["å","ä","ö"], $value);
1145
+                    $value = str_replace(["Å", "Ä", "Ö"], ["å", "ä", "ö"], $value);
1146 1146
                 }
1147 1147
 
1148 1148
                 if (!empty($attrs['truncate'])) {
Please login to merge, or discard this patch.
Braces   +8 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1028,10 +1028,12 @@  discard block
 block discarded – undo
1028 1028
                 $tmp = $record->getAllNames();
1029 1029
                 $name = $tmp[count($tmp) - 1]['full'];
1030 1030
                 $ix1 = strpos($name, '<span class="starredname">');
1031
-                if ($ix1 !== false) {   // '«' and '»' mark text for underlining
1031
+                if ($ix1 !== false) {
1032
+// '«' and '»' mark text for underlining
1032 1033
                     $name = substr_replace($name, '«', $ix1, 26);
1033 1034
                     $ix1 = strpos($name, '</span>', $ix1);
1034
-                    if ($ix1 !== false) {   // '«' and '»' mark text for underlining
1035
+                    if ($ix1 !== false) {
1036
+// '«' and '»' mark text for underlining
1035 1037
                         $name = substr_replace($name, '»', $ix1, 7);
1036 1038
                     }
1037 1039
                 }
@@ -1508,7 +1510,8 @@  discard block
 block discarded – undo
1508 1510
         // Sort facts in chronological order, if possible
1509 1511
         $m = count($this->repeats) - 1;
1510 1512
         $prevd = 0;
1511
-        for ($i = 0; $i <= $m; $i++) { // keep undated events after previous dated event
1513
+        for ($i = 0; $i <= $m; $i++) {
1514
+// keep undated events after previous dated event
1512 1515
             if ($jdarr[$i] === 0) {
1513 1516
                 $jdarr[$i] = $prevd;
1514 1517
             } else {
@@ -1762,7 +1765,8 @@  discard block
 block discarded – undo
1762 1765
         } elseif (preg_match('/^I18N::translateContext\(\'(.+)\', *\'(.+)\'\)$/', $value, $match)) {
1763 1766
             $value = I18N::translateContext($match[1], $match[2]);
1764 1767
         }
1765
-        if (isset($attrs['lcfirst'])) { // set 1st char to lower case
1768
+        if (isset($attrs['lcfirst'])) {
1769
+// set 1st char to lower case
1766 1770
             $value = lcfirst($value);
1767 1771
         }
1768 1772
 
Please login to merge, or discard this patch.
app/Report/ReportHtmlImage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
                 if ($this->width <= 30) {
69 69
                     $maxh = "max-height:40pt;";
70 70
                 }
71
-                echo '<img src="', $this->file, '" style="position:absolute;', $renderer->alignRTL, ':', $this->x, 'pt;top:', $this->y, 'pt;width:', $this->width, 'pt;',$maxh, ' alt="">\n';
71
+                echo '<img src="', $this->file, '" style="position:absolute;', $renderer->alignRTL, ':', $this->x, 'pt;top:', $this->y, 'pt;width:', $this->width, 'pt;', $maxh, ' alt="">\n';
72 72
         }
73 73
 
74 74
         $lastpicpage   = $renderer->pageNo();
Please login to merge, or discard this patch.
app/Report/ReportPdfTextBox.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
             $cY = $renderer->tcpdf->GetY();
145 145
         } else {
146 146
             $align_Y = true;
147
-            $this->top = $renderer->tcpdf->GetY();   // ReportBaseElement::CURRENT_POSITION;
147
+            $this->top = $renderer->tcpdf->GetY(); // ReportBaseElement::CURRENT_POSITION;
148 148
             if ($this->top_position != 0) {
149 149
                 $this->top += $this->top_position;
150 150
             }
@@ -349,7 +349,7 @@  discard block
 block discarded – undo
349 349
         $curr_P = $renderer->tcpdf->getPage();
350 350
         // New line and some clean up
351 351
         if (!$this->newline) {
352
-            $renderer->tcpdf->setXY($cX + $cW, $cY);   // $curr_Y);
352
+            $renderer->tcpdf->setXY($cX + $cW, $cY); // $curr_Y);
353 353
             $renderer->lastCellHeight = $cH;
354 354
         } else {
355 355
             // addMarginX() also updates X
Please login to merge, or discard this patch.
app/Report/ReportHtmlTextbox.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
                         $lastelement   = $element;
69 69
                     }
70 70
                 } elseif ($element instanceof ReportHtmlImage) {
71
-                    $lastelement   = $element;
71
+                    $lastelement = $element;
72 72
                 } elseif ($element instanceof ReportHtmlFootnote) {
73 73
                     // Check if the Footnote has been set with it’s link number
74 74
                     $renderer->checkFootnote($element);
@@ -300,7 +300,7 @@  discard block
 block discarded – undo
300 300
         $renderer->setXy($cXT, $cYT);
301 301
         // This will be mostly used to trick the multiple images last height
302 302
         if ($this->reseth) {
303
-            $this->top = $first_Y;  //- $cH;
303
+            $this->top = $first_Y; //- $cH;
304 304
             $cH = 0;
305 305
         }
306 306
         // New line and some clean up
Please login to merge, or discard this patch.