@@ -138,7 +138,7 @@ |
||
| 138 | 138 | $newtext .= ' '; |
| 139 | 139 | } |
| 140 | 140 | } else { |
| 141 | - $lw = $html->getStringWidth($word . ' '); |
|
| 141 | + $lw = $html->getStringWidth($word . ' '); |
|
| 142 | 142 | $newtext .= "\n$word"; |
| 143 | 143 | if ($addspace != 0) { |
| 144 | 144 | $newtext .= ' '; |
@@ -59,7 +59,7 @@ discard block |
||
| 59 | 59 | $lines = explode("\n", $temptext); |
| 60 | 60 | foreach ($lines as $line) { |
| 61 | 61 | echo '<div style="position:absolute;top:', $startY, 'pt;', $renderer->alignRTL, ':', $startX, 'pt;width:', $width, 'pt;">'; |
| 62 | - $line = $renderer->textWrap($line, $width); |
|
| 62 | + $line = $renderer->textWrap($line, $width); |
|
| 63 | 63 | $startY += $renderer->getTextCellHeight($line); |
| 64 | 64 | $renderer->setY($startY); |
| 65 | 65 | $renderer->write($line, $this->color); |
@@ -146,7 +146,7 @@ discard block |
||
| 146 | 146 | $newtext .= ' '; |
| 147 | 147 | } |
| 148 | 148 | } else { |
| 149 | - $lw = $html->getStringWidth($word . ' '); |
|
| 149 | + $lw = $html->getStringWidth($word . ' '); |
|
| 150 | 150 | $newtext .= "\n$word"; |
| 151 | 151 | if ($addspace != 0) { |
| 152 | 152 | $newtext .= ' '; |
@@ -107,7 +107,7 @@ discard block |
||
| 107 | 107 | if ($this->wrapWidthRemaining > 0) { |
| 108 | 108 | // Check with line counter too! |
| 109 | 109 | // but floor the $wrapWidthRemaining first to keep it bugfree! |
| 110 | - $wrapWidthRemaining = (int)($this->wrapWidthRemaining); |
|
| 110 | + $wrapWidthRemaining = (int) ($this->wrapWidthRemaining); |
|
| 111 | 111 | if ($lw >= $wrapWidthRemaining || $lfct > 1) { |
| 112 | 112 | $newtext = ''; |
| 113 | 113 | $lines = explode("\n", $this->numText); |
@@ -129,7 +129,7 @@ discard block |
||
| 129 | 129 | $newtext .= ' '; |
| 130 | 130 | } |
| 131 | 131 | } else { |
| 132 | - $lw = $pdf->GetStringWidth($word . ' '); |
|
| 132 | + $lw = $pdf->GetStringWidth($word . ' '); |
|
| 133 | 133 | $newtext .= "\n$word"; |
| 134 | 134 | if ($addspace != 0) { |
| 135 | 135 | $newtext .= ' '; |
@@ -43,7 +43,7 @@ |
||
| 43 | 43 | '<u>', |
| 44 | 44 | '</u>', |
| 45 | 45 | ], $temptext); |
| 46 | - $match = []; |
|
| 46 | + $match = []; |
|
| 47 | 47 | // Indicates if the cell background must be painted (1) or transparent (0) |
| 48 | 48 | if ($this->fill == 1) { |
| 49 | 49 | if (!empty($this->bgcolor)) { |
@@ -60,7 +60,7 @@ |
||
| 60 | 60 | |
| 61 | 61 | // Create a dummy user, so we can send messages from the tree. |
| 62 | 62 | $sender = new User( |
| 63 | - (object)[ |
|
| 63 | + (object) [ |
|
| 64 | 64 | 'user_id' => null, |
| 65 | 65 | 'user_name' => '', |
| 66 | 66 | 'real_name' => $tree->getTitle(), |
@@ -64,12 +64,12 @@ discard block |
||
| 64 | 64 | $this->checkIndividualAccess($individual); |
| 65 | 65 | |
| 66 | 66 | $minimum_generations = 2; |
| 67 | - $maximum_generations = (int)$tree->getPreference('MAX_PEDIGREE_GENERATIONS', self::DEFAULT_MAXIMUM_GENERATIONS); |
|
| 68 | - $default_generations = (int)$tree->getPreference('DEFAULT_PEDIGREE_GENERATIONS', self::DEFAULT_GENERATIONS); |
|
| 67 | + $maximum_generations = (int) $tree->getPreference('MAX_PEDIGREE_GENERATIONS', self::DEFAULT_MAXIMUM_GENERATIONS); |
|
| 68 | + $default_generations = (int) $tree->getPreference('DEFAULT_PEDIGREE_GENERATIONS', self::DEFAULT_GENERATIONS); |
|
| 69 | 69 | |
| 70 | - $show_cousins = (bool)$request->get('show_cousins', self::DEFAULT_COUSINS); |
|
| 71 | - $chart_style = (int)$request->get('chart_style', self::DEFAULT_STYLE); |
|
| 72 | - $generations = (int)$request->get('generations', $default_generations); |
|
| 70 | + $show_cousins = (bool) $request->get('show_cousins', self::DEFAULT_COUSINS); |
|
| 71 | + $chart_style = (int) $request->get('chart_style', self::DEFAULT_STYLE); |
|
| 72 | + $generations = (int) $request->get('generations', $default_generations); |
|
| 73 | 73 | |
| 74 | 74 | $generations = min($generations, $maximum_generations); |
| 75 | 75 | $generations = max($generations, $minimum_generations); |
@@ -112,12 +112,12 @@ discard block |
||
| 112 | 112 | $this->checkIndividualAccess($individual); |
| 113 | 113 | |
| 114 | 114 | $minimum_generations = 2; |
| 115 | - $maximum_generations = (int)$tree->getPreference('MAX_PEDIGREE_GENERATIONS', self::DEFAULT_MAXIMUM_GENERATIONS); |
|
| 116 | - $default_generations = (int)$tree->getPreference('DEFAULT_PEDIGREE_GENERATIONS', self::DEFAULT_GENERATIONS); |
|
| 115 | + $maximum_generations = (int) $tree->getPreference('MAX_PEDIGREE_GENERATIONS', self::DEFAULT_MAXIMUM_GENERATIONS); |
|
| 116 | + $default_generations = (int) $tree->getPreference('DEFAULT_PEDIGREE_GENERATIONS', self::DEFAULT_GENERATIONS); |
|
| 117 | 117 | |
| 118 | - $show_cousins = (bool)$request->get('show_cousins', self::DEFAULT_COUSINS); |
|
| 119 | - $chart_style = (int)$request->get('chart_style', self::DEFAULT_STYLE); |
|
| 120 | - $generations = (int)$request->get('generations', $default_generations); |
|
| 118 | + $show_cousins = (bool) $request->get('show_cousins', self::DEFAULT_COUSINS); |
|
| 119 | + $chart_style = (int) $request->get('chart_style', self::DEFAULT_STYLE); |
|
| 120 | + $generations = (int) $request->get('generations', $default_generations); |
|
| 121 | 121 | |
| 122 | 122 | $generations = min($generations, $maximum_generations); |
| 123 | 123 | $generations = max($generations, $minimum_generations); |
@@ -336,7 +336,7 @@ |
||
| 336 | 336 | $INDEX_DIRECTORY = $config['INDEX_DIRECTORY']; |
| 337 | 337 | $DBNAME = $config['DBNAME']; |
| 338 | 338 | $TBLPREFIX = $config['TBLPREFIX']; |
| 339 | - $PGV_SCHEMA_VERSION = (int)($config['PGV_SCHEMA_VERSION'] ?? '0'); |
|
| 339 | + $PGV_SCHEMA_VERSION = (int) ($config['PGV_SCHEMA_VERSION'] ?? '0'); |
|
| 340 | 340 | |
| 341 | 341 | // Delete the existing user accounts, and any information associated with it |
| 342 | 342 | Database::exec("UPDATE `##log` SET user_id=NULL"); |
@@ -512,7 +512,7 @@ |
||
| 512 | 512 | private function maxUploadFilesize(): string |
| 513 | 513 | { |
| 514 | 514 | $bytes = UploadedFile::getMaxFilesize(); |
| 515 | - $kb = (int)($bytes / 1024); |
|
| 515 | + $kb = (int) ($bytes / 1024); |
|
| 516 | 516 | |
| 517 | 517 | return I18N::translate('%s KB', I18N::number($kb)); |
| 518 | 518 | } |
@@ -528,7 +528,7 @@ |
||
| 528 | 528 | $html = ''; |
| 529 | 529 | |
| 530 | 530 | foreach ($list as $id => $facts) { |
| 531 | - $tmp = GedcomRecord::getInstance($id, $tree); |
|
| 531 | + $tmp = GedcomRecord::getInstance($id, $tree); |
|
| 532 | 532 | $html .= $tag1 . '<a href="' . e($tmp->url()) . '">' . $tmp->getFullName() . '</a> '; |
| 533 | 533 | $html .= '<div class="indent">' . $facts . '</div>' . $tag2; |
| 534 | 534 | } |