LinkPriceInterface.php 410 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Downloadable\Pricing\Price;
  7. use Magento\Downloadable\Model\Link;
  8. /**
  9. * Class LinkPrice Model
  10. */
  11. interface LinkPriceInterface
  12. {
  13. /**
  14. * @param Link $link
  15. * @return \Magento\Framework\Pricing\Amount\AmountInterface
  16. */
  17. public function getLinkAmount(Link $link);
  18. }