MsrpPriceCalculatorInterface.php 496 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Msrp\Pricing;
  7. use Magento\Catalog\Api\Data\ProductInterface;
  8. /**
  9. * Provide information about MSRP price of a product.
  10. */
  11. interface MsrpPriceCalculatorInterface
  12. {
  13. /**
  14. * Return the value of MSRP product price.
  15. *
  16. * @param ProductInterface $product
  17. * @return float
  18. */
  19. public function getMsrpPriceValue(ProductInterface $product): float;
  20. }