forked from wechatpay-apiv3/wechatpay-php
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathBuilderTrait.php
103 lines (89 loc) · 2.48 KB
/
BuilderTrait.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<?php declare(strict_types=1);
namespace WeChatPay;
use GuzzleHttp\Promise\PromiseInterface;
use Psr\Http\Message\ResponseInterface;
/**
* Chainable points the client interface for sending HTTP requests.
*/
trait BuilderTrait
{
abstract public function getDriver(): ClientDecoratorInterface;
/**
* URI pathname
*
* @param string $seperator - The URI seperator, default is slash(`/`) character
*
* @return string - The URI string
*/
abstract protected function pathname(string $seperator = '/'): string;
/**
* @inheritDoc
*/
public function get(array $options = []): ResponseInterface
{
return $this->getDriver()->request('GET', $this->pathname(), $options);
}
/**
* @inheritDoc
*/
public function put(array $options = []): ResponseInterface
{
return $this->getDriver()->request('PUT', $this->pathname(), $options);
}
/**
* @inheritDoc
*/
public function post(array $options = []): ResponseInterface
{
return $this->getDriver()->request('POST', $this->pathname(), $options);
}
/**
* @inheritDoc
*/
public function patch(array $options = []): ResponseInterface
{
return $this->getDriver()->request('PATCH', $this->pathname(), $options);
}
/**
* @inheritDoc
*/
public function delete(array $options = []): ResponseInterface
{
return $this->getDriver()->request('DELETE', $this->pathname(), $options);
}
/**
* @inheritDoc
*/
public function getAsync(array $options = []): PromiseInterface
{
return $this->getDriver()->requestAsync('GET', $this->pathname(), $options);
}
/**
* @inheritDoc
*/
public function putAsync(array $options = []): PromiseInterface
{
return $this->getDriver()->requestAsync('PUT', $this->pathname(), $options);
}
/**
* @inheritDoc
*/
public function postAsync(array $options = []): PromiseInterface
{
return $this->getDriver()->requestAsync('POST', $this->pathname(), $options);
}
/**
* @inheritDoc
*/
public function patchAsync(array $options = []): PromiseInterface
{
return $this->getDriver()->requestAsync('PATCH', $this->pathname(), $options);
}
/**
* @inheritDoc
*/
public function deleteAsync(array $options = []): PromiseInterface
{
return $this->getDriver()->requestAsync('DELETE', $this->pathname(), $options);
}
}