FinalPriceInterface.php 565 B

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