ResultInterface.php 394 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Payment\Gateway\Command;
  7. /**
  8. * Interface ResultInterface
  9. * @package Magento\Payment\Gateway\Command
  10. * @api
  11. * @since 100.0.2
  12. */
  13. interface ResultInterface
  14. {
  15. /**
  16. * Returns result interpretation
  17. *
  18. * @return mixed
  19. */
  20. public function get();
  21. }