HandlerInterface.php 493 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Payment\Gateway\Response;
  7. /**
  8. * Interface HandlerInterface
  9. * @package Magento\Payment\Gateway\Response
  10. * @api
  11. * @since 100.0.2
  12. */
  13. interface HandlerInterface
  14. {
  15. /**
  16. * Handles response
  17. *
  18. * @param array $handlingSubject
  19. * @param array $response
  20. * @return void
  21. */
  22. public function handle(array $handlingSubject, array $response);
  23. }