IpnInterface.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\Paypal\Model;
  7. /**
  8. * Interface \Magento\Paypal\Model\IpnInterface
  9. *
  10. */
  11. interface IpnInterface
  12. {
  13. /**
  14. * Get ipn data, send verification to PayPal, run corresponding handler
  15. *
  16. * @return void
  17. * @throws \Exception
  18. */
  19. public function processIpnRequest();
  20. }