vendor/shopware/core/Checkout/Cart/Price/PriceRounding.php line 5

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace Shopware\Core\Checkout\Cart\Price;
  3. class PriceRounding implements PriceRoundingInterface
  4. {
  5.     public function round(float $priceint $precision): float
  6.     {
  7.         return round($price$precision);
  8.     }
  9. }