ConfigurableRegularPriceInterface.php 740 B

1234567891011121314151617181920212223242526272829303132
  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. use Magento\Catalog\Model\Product;
  8. use Magento\Framework\Pricing\Price\BasePriceProviderInterface;
  9. /**
  10. * Configurable regular price interface
  11. * @api
  12. * @since 100.0.2
  13. */
  14. interface ConfigurableRegularPriceInterface extends BasePriceProviderInterface
  15. {
  16. /**
  17. * Get max regular amount
  18. *
  19. * @return \Magento\Framework\Pricing\Amount\AmountInterface
  20. */
  21. public function getMaxRegularAmount();
  22. /**
  23. * Get min regular amount
  24. *
  25. * @return \Magento\Framework\Pricing\Amount\AmountInterface
  26. */
  27. public function getMinRegularAmount();
  28. }