Merge pull request #25646 from nextcloud/fix/psalm/markdown
Markdown: remove redundant int cast
This commit is contained in:
commit
19f1cc6dde
|
@ -126,7 +126,7 @@ class MarkDown extends TXT {
|
|||
$nextLineStart -= $actualFontSize;
|
||||
}
|
||||
} else {
|
||||
$y -= (int)$fontSize;
|
||||
$y -= $fontSize;
|
||||
imagestring($image, 1, $x, $y, $line, $textColor);
|
||||
$nextLineStart = $fontSize;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue