BuilderInterface.php 440 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Payment\Gateway\Request;
  7. /**
  8. * Interface BuilderInterface
  9. * @package Magento\Payment\Gateway\Request
  10. * @api
  11. * @since 100.0.2
  12. */
  13. interface BuilderInterface
  14. {
  15. /**
  16. * Builds ENV request
  17. *
  18. * @param array $buildSubject
  19. * @return array
  20. */
  21. public function build(array $buildSubject);
  22. }