Passed
Push — main ( 27e66b...25b76e )
by Abbotton
12:06
created

Coupons::cancelVerify()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
c 1
b 0
f 0
nc 1
nop 1
dl 0
loc 3
rs 10
1
<?php
2
3
namespace Abbotton\DouDian\Api;
4
5
use Illuminate\Http\Client\RequestException;
6
use Psr\SimpleCache\InvalidArgumentException;
7
8
class Coupons extends BaseRequest
9
{
10
    /**
11
     * 卡券取消核销接口.
12
     *
13
     * @param  array  $params
14
     * @return array
15
     *
16
     * @throws RequestException
17
     * @throws InvalidArgumentException
18
     */
19
    public function cancelVerify(array $params): array
20
    {
21
        return $this->httpPost('coupons/cancelVerify', $params);
22
    }
23
24
    /**
25
     * 卡券废弃接口.
26
     *
27
     * @param  array  $params
28
     * @return array
29
     *
30
     * @throws RequestException
31
     * @throws InvalidArgumentException
32
     */
33
    public function abandon(array $params): array
34
    {
35
        return $this->httpPost('coupons/abandon', $params);
36
    }
37
38
    /**
39
     * 卡券同步.
40
     *
41
     * @param  array  $params
42
     * @return array
43
     *
44
     * @throws RequestException
45
     * @throws InvalidArgumentException
46
     */
47
    public function syncV2(array $params): array
48
    {
49
        return $this->httpPost('coupons/syncV2', $params);
50
    }
51
52
    /**
53
     * 卡券核销接口V2版本.
54
     *
55
     * @param  array  $params
56
     * @return array
57
     *
58
     * @throws RequestException
59
     * @throws InvalidArgumentException
60
     */
61
    public function verifyV2(array $params): array
62
    {
63
        return $this->httpPost('coupons/verifyV2', $params);
64
    }
65
}
66