FinalPriceInterface.php 433 B

1234567891011121314151617181920
  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. * Interface FinalPriceInterface
  9. * @api
  10. * @since 100.0.2
  11. */
  12. interface FinalPriceInterface extends \Magento\Catalog\Pricing\Price\FinalPriceInterface
  13. {
  14. /**
  15. * @return \Magento\Framework\Pricing\Amount\AmountInterface
  16. */
  17. public function getPriceWithoutOption();
  18. }