mirror of
https://gitee.com/yansongda/pay.git
synced 2024-12-02 12:17:38 +08:00
update docs
This commit is contained in:
parent
3a6884b39e
commit
4ce5e36c60
@ -6,9 +6,9 @@
|
||||
|
||||
# 使用方法
|
||||
|
||||
## 例子
|
||||
## 查询普通支付订单
|
||||
|
||||
```php
|
||||
```PHP
|
||||
$order = [
|
||||
'out_trade_no' => '1514027114',
|
||||
];
|
||||
@ -18,10 +18,28 @@ $order = [
|
||||
$result = $wechat->find($order);
|
||||
```
|
||||
|
||||
## 查询退款订单
|
||||
|
||||
```PHP
|
||||
$order = [
|
||||
'out_trade_no' => '1514027114',
|
||||
];
|
||||
|
||||
// $order = '1514027114';
|
||||
|
||||
$result = $wechat->find($order, true);
|
||||
```
|
||||
|
||||
## 订单配置参数
|
||||
|
||||
### 查询订单
|
||||
|
||||
所有订单配置参数和官方无任何差别,兼容所有功能,所有参数请参考[这里](https://pay.weixin.qq.com/wiki/doc/api/jsapi.php?chapter=9_2),查看「请求参数」一栏。
|
||||
|
||||
### 查询退款订单
|
||||
|
||||
所有订单配置参数和官方无任何差别,兼容所有功能,所有参数请参考[这里](https://pay.weixin.qq.com/wiki/doc/api/jsapi.php?chapter=9_5),查看「请求参数」一栏。
|
||||
|
||||
### APP/小程序查询
|
||||
|
||||
如果您需要查询 `APP/小程序` 的订单,请传入参数:`['type' => 'app']`/`['type' => 'miniapp']`
|
||||
|
@ -4,9 +4,10 @@
|
||||
| :---: | :---: | :---: |
|
||||
| refund | array $order | Collection |
|
||||
|
||||
|
||||
# 使用方法
|
||||
|
||||
## 例子
|
||||
## 退款操作
|
||||
|
||||
```PHP
|
||||
$order = [
|
||||
@ -28,18 +29,12 @@ $result = $wechat->refund($order);
|
||||
|
||||
如果您需要退 `APP/小程序` 的订单,请传入参数:`['type' => 'app']`/`['type' => 'miniapp']`
|
||||
|
||||
# 异步通知验证
|
||||
```PHP
|
||||
$result = $wechat->verify(null, true);
|
||||
// 是的,你没有看错,就是这么简单!
|
||||
|
||||
// return $wechat->success()->send(); // laravel 框架直接 return $wechat->success();
|
||||
```
|
||||
|
||||
# 返回值
|
||||
|
||||
返回 Collection 类型,可以通过 `$collection->xxx` 得到服务器返回的数据。
|
||||
|
||||
|
||||
# 异常
|
||||
|
||||
* Yansongda\Pay\Exceptions\InvalidGatewayException ,表示使用了除本 SDK 支持的支付网关。
|
||||
|
Loading…
Reference in New Issue
Block a user