Coverage Tweak

This commit is contained in:
oleibman
2025-11-01 07:58:15 -07:00
parent e88eaa6d95
commit 93c5f0d93d
+1 -5
View File
@@ -116,11 +116,7 @@ class Drawing
*/
public static function pointsToPixels($pointValue): int
{
if ($pointValue != 0) {
return (int) ceil($pointValue / 0.75);
}
return 0;
return (int) ceil($pointValue / 0.75);
}
/**