| 12345678910111213141516171819202122 |
- <?php
- namespace addons\YunfastPay\common\services\pays;
- use addons\YunfastPay\common\services\trans\TransInterface;
- interface PayInterface
- {
- /**
- * @return TransInterface
- */
- public function getTrans();
- /**
- * 返回支付所需数据
- *
- * @param array $result
- * @return array
- */
- public function getPayData(array $result);
- }
|