1 | <?php |
||
16 | class Client extends BaseClient |
||
17 | { |
||
18 | /** |
||
19 | * Reverse order by out trade number. |
||
20 | * |
||
21 | * @param string $outTradeNumber |
||
22 | * |
||
23 | * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string |
||
24 | */ |
||
25 | public function byOutTradeNumber(string $outTradeNumber) |
||
29 | |||
30 | /** |
||
31 | * Reverse order by transaction_id. |
||
32 | * |
||
33 | * @param string $transactionId |
||
34 | * |
||
35 | * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string |
||
36 | */ |
||
37 | public function byTransactionId(string $transactionId) |
||
41 | |||
42 | /** |
||
43 | * Reverse order. |
||
44 | * |
||
45 | * @param string $number |
||
46 | * @param string $type |
||
47 | * |
||
48 | * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string |
||
49 | */ |
||
50 | protected function reverse(string $number, string $type) |
||
58 | } |
||
59 |