mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Merge pull request #25646 from nextcloud/fix/psalm/markdown
Markdown: remove redundant int cast
This commit is contained in:
commit
19f1cc6dde
1 changed files with 1 additions and 1 deletions
|
|
@ -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 a new issue