Upgraded brick/math to latest version

This commit is contained in:
Jan Böhmer 2026-05-19 21:17:45 +02:00
parent 506d5f8173
commit 527c42c227
11 changed files with 58 additions and 56 deletions

View file

@ -44,7 +44,7 @@ class BigDecimalType extends Type
return BigDecimal::of($value);
return BigDecimal::of(is_float($value) ? BigDecimal::fromFloatShortest($value) : $value);
}
/**