RegularPriceInterface.php 631 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Bundle\Pricing\Price;
  7. /**
  8. * Regular price interface
  9. * @api
  10. * @since 100.0.2
  11. */
  12. interface RegularPriceInterface extends \Magento\Framework\Pricing\Price\BasePriceProviderInterface
  13. {
  14. /**
  15. * Get Minimal Price Amount
  16. *
  17. * @return \Magento\Framework\Pricing\Amount\AmountInterface
  18. */
  19. public function getMinimalPrice();
  20. /**
  21. * Get Maximal Price Amount
  22. *
  23. * @return \Magento\Framework\Pricing\Amount\AmountInterface
  24. */
  25. public function getMaximalPrice();
  26. }