PayInterface.php 376 B

12345678910111213141516171819202122
  1. <?php
  2. namespace addons\YunfastPay\common\services\pays;
  3. use addons\YunfastPay\common\services\trans\TransInterface;
  4. interface PayInterface
  5. {
  6. /**
  7. * @return TransInterface
  8. */
  9. public function getTrans();
  10. /**
  11. * 返回支付所需数据
  12. *
  13. * @param array $result
  14. * @return array
  15. */
  16. public function getPayData(array $result);
  17. }