Files
kupshop/bundles/KupShop/KupShopBundle/Util/Price/PreRoundedPrice.php
2025-08-02 16:30:27 +02:00

12 lines
193 B
PHP

<?php
namespace KupShop\KupShopBundle\Util\Price;
class PreRoundedPrice extends Price
{
protected function round(\Decimal $price): \Decimal
{
return $price->round(2);
}
}