RegularPriceResolver.php 467 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\ConfigurableProduct\Pricing\Price;
  7. class RegularPriceResolver implements PriceResolverInterface
  8. {
  9. /**
  10. * @param \Magento\Framework\Pricing\SaleableInterface $product
  11. * @return float
  12. */
  13. public function resolvePrice(\Magento\Framework\Pricing\SaleableInterface $product)
  14. {
  15. return $product->getPrice();
  16. }
  17. }