![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-sales-rule/Model/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\SalesRule\Model; use Magento\Framework\Pricing\PriceCurrencyInterface; /** * Round price and save rounding operation delta. */ class DeltaPriceRound { /** * @var PriceCurrencyInterface */ private $priceCurrency; /** * @var float[] */ private $roundingDeltas; /** * @param PriceCurrencyInterface $priceCurrency */ public function __construct(PriceCurrencyInterface $priceCurrency) { $this->priceCurrency = $priceCurrency; } /** * Round price based on previous rounding operation delta. * * @param float $price * @param string $type * @return float */ public function round(float $price, string $type): float { if ($price) { // initialize the delta to a small number to avoid non-deterministic behavior with rounding of 0.5 $delta = isset($this->roundingDeltas[$type]) ? $this->roundingDeltas[$type] : 0.000001; $price += $delta; $roundPrice = $this->priceCurrency->round($price); $this->roundingDeltas[$type] = $price - $roundPrice; $price = $roundPrice; } return $price; } /** * Reset all deltas. * * @return void */ public function resetAll(): void { $this->roundingDeltas = []; } /** * Reset deltas by type. * * @param string $type * @return void */ public function reset(string $type): void { if (isset($this->roundingDeltas[$type])) { unset($this->roundingDeltas[$type]); } } }