TransparentInterface.php 597 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Payment\Model\Method;
  7. use Magento\Payment\Model\MethodInterface;
  8. /**
  9. * Interface TransparentInterface need to be implemented by Payment Method service
  10. * which supports transparent redirect feature
  11. * @package Magento\Payment\Model\Method
  12. */
  13. interface TransparentInterface extends MethodInterface
  14. {
  15. /**
  16. * Returns payment method configured config
  17. *
  18. * @return \Magento\Payment\Gateway\ConfigInterface
  19. */
  20. public function getConfigInterface();
  21. }