DiscountProviderInterface.php 339 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 DiscountProviderInterface
  9. * @api
  10. * @since 100.0.2
  11. */
  12. interface DiscountProviderInterface
  13. {
  14. /**
  15. * @return float
  16. */
  17. public function getDiscountPercent();
  18. }