diff --git a/src/QUI/ERP/Money/Price.php b/src/QUI/ERP/Money/Price.php index 05079e4f4980a9fdae95aa9fd853cb0089191928..a329638620ad8bbc82a031ffe8ba6d3bac7c28d6 100644 --- a/src/QUI/ERP/Money/Price.php +++ b/src/QUI/ERP/Money/Price.php @@ -198,8 +198,10 @@ public function getCurrency(): QUI\ERP\Currency\Currency * @param QUI\Locale|null $Locale - based locale, in which the price is * @return float|int|null */ - public static function validatePrice(mixed $value, null | QUI\Locale $Locale = null): float | int | null - { + public static function validatePrice( + mixed $value, + null | QUI\Locale $Locale = null + ): float | int | null { if (is_float($value) || is_int($value)) { return round($value, QUI\ERP\Defaults::getPrecision()); }